Calculating Square root with divide and conquer method
Time complexity of Simple way : O(n)
Time complexity of Divide and Conqure way : O(log₂ N)
Time complexity of Simple way For 10 digit costs 21ms
Time complexity of Divide and Conqure way For 1000 digit costs 44ms