thepurpleowl / House-of-Codes

A repository to collect the solutions to all Competitive platform problems, only to be used as reference/practice.
9 stars 30 forks source link

Added square_root.cpp #27

Closed ShehzadAhm closed 3 years ago

ShehzadAhm commented 3 years ago

Compute the square root of a number without inbuilt sqrt() function.

ShehzadAhm commented 3 years ago

@thepurpleowl It uses binary search algorithm

thepurpleowl commented 3 years ago

@ShehzadAhm only standard algos should be inside Basics/. For others you need to add to appropriate subdirectory with updated README.

ShehzadAhm commented 3 years ago

@thepurpleowl Ok I will create a new directory.