Skip to content

Commit

Permalink
Merge pull request #1 from xanni/patch-3
Browse files Browse the repository at this point in the history
Update instructions.append.md
  • Loading branch information
xanni authored Nov 5, 2024
2 parents 056da4d + c259885 commit b34a193
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions exercises/practice/square-root/.docs/instructions.append.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@
Python offers a wealth of mathematical functions in the form of the [math module][math-module] and built-ins such as the exponentiation operator `**`, [`pow()`][pow] and [`sum()`][sum].
However, we'd like you to consider the challenge of solving this exercise without those built-ins or modules.

While there is a mathematical formula that will find the square root of _any_ number, we have gone the route of having only [natural numbers][nautral-number] (positive integers) as solutions.
It is possible to compute the square root of any natural number using only natural numbers in the computation.

While there is a mathematical formula that will find the square root of _any_ number, we have gone the route of having only [natural numbers][nautral-number] (positive integers) as solutions.

[math-module]: https://docs.python.org/3/library/math.html
[pow]: https://docs.python.org/3/library/functions.html#pow
Expand Down

0 comments on commit b34a193

Please sign in to comment.