Skip to content

enginooby-academics/data-structures-and-algorithms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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