Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion exercises/square-root/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Check out the Wikipedia pages on [square root](https://en.wikipedia.org/wiki/Squ

Recall also that natural numbers are positive real whole numbers (i.e. 1, 2, 3 and up).

The idea is not to use the built-in javascript function `Math.sqrt(x)`, it's to build your own.
The idea is not to use the built-in javascript functions such as `Math.sqrt(x)`, `x ** 0.5` or `x ** (1/2)`, it's to build your own.


## Setup
Expand Down