Skip to content

Commit b34a193

Browse files
authored
Merge pull request #1 from xanni/patch-3
Update instructions.append.md
2 parents 056da4d + c259885 commit b34a193

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

exercises/practice/square-root/.docs/instructions.append.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66
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].
77
However, we'd like you to consider the challenge of solving this exercise without those built-ins or modules.
88

9-
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.
10-
It is possible to compute the square root of any natural number using only natural numbers in the computation.
11-
9+
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.
1210

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

0 commit comments

Comments
 (0)