Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 956 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 956 Bytes

Usages

C++ | Python

Code & run 😉

C#

  1. Create new Class with static void Main(string[] args) for each problem
  2. Specify Class name to run program for <StartupObject> in csharp.csproj
  3. Terminal: dotnet run -p cs

TypeScript

  1. Watch ts file: Ctrl + Shift + B. This will recompile the file on save
  2. Run a program: Ctrl + Alt + N on the complied js file

Problems

  1. Two Sum -> Generalized: find x objects in y collections that have a certain relationship.
  2. Add Two Numbers - LinkedList
  3. Longest Substring Without Repeating Characters
  4. Reverse Integer -> Generalized: reverse a collection of objects
  5. Palindrome Number