Skip to content

Latest commit

 

History

History
22 lines (12 loc) · 548 Bytes

README.md

File metadata and controls

22 lines (12 loc) · 548 Bytes

Quirky Algorithms

My take on some intricate, intriguing Algorithmic problems!


problem01

Accepted p01/take02.c

  • The 0-th element of the input array must be moved to a position where all the numbers lesser than it would be to the left of it and the ones greater, to the right
  • Each element can move no more than 1 time

Accepted p02/take01.py


References