Skip to content

Latest commit

 

History

History
8 lines (5 loc) · 295 Bytes

File metadata and controls

8 lines (5 loc) · 295 Bytes

PythonDSAlgo

Learning DataStructures and Algorithms using python 2.7

  1. Finding greatest common divisor (GCD) of two integers (m,n)
  • Largest K that divides m and n (starting from naive way and improving using euclid"s algorithm which works for larger numbers too)
  1. searching and sorting