Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 335 Bytes

README.md

File metadata and controls

15 lines (10 loc) · 335 Bytes

Problem solving 🎉 🚀

Repo to manage algorithmic questions using Swift

Time complexities of popular algorithms

  • Binary Search: O(log n) - [done]
  • Quick Sort: O(n * log n)
  • Selection Sort: O(n * n)
  • Travelling salesperson : O(n!)
  • Bubble sort: O(n * n)
  • implementation of leetcode problems

made with swift