Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 1.13 KB

File metadata and controls

35 lines (23 loc) · 1.13 KB

🚥 Let's get coding!

1. Basic Algorithms

Estimated Duration: 5-7 days An average of 4 questions a day.

Run code online: Repl.it

Practice questions: ✅ Easy Problems →

For some of the questions, you might need understanding of the next two sections of searching & sorting algorithms.

2. Searching Algorithms

The following links are in another programming language, but you should be able to read, understand the C code & manually convert it to Ruby.

Code 2 searching algorithms in Ruby

3. Sorting Algorithms

Plenty of resources online for this in many programming languages. Study, understand & write a code that you can reproduce yourself.

  • Selection Sort
  • Bubble Sort
  • Insertion Sort
  • Merge Sort
  • Quick Sort

Visualisation: VisualGo

Code 5 sorting algorithms in Ruby