Sqrt in Math.sol

I was studying the code of Math.sol Library and found there are two functions having the same name sqrt(). Is this okay wouldn't there be a problem ?

They have different number of arguments, the compiler will choose the right one depending on how you invoke it.

1 Like

Thanks for helping out.