Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 194 Bytes

README.md

File metadata and controls

7 lines (6 loc) · 194 Bytes

Algorithms on Ruby

  • Binary search (fast) - O(log n)
  • Slow sorting (slow) - O(n**2)
  • Quick sorting (fast) - O(n * log n)
  • Recursion practice (basic and recursion parts)
  • Search by Graphs