Skip to content

Commit

Permalink
Fixes #3594, solutions are natural numbers (#3597)
Browse files Browse the repository at this point in the history
  • Loading branch information
ksnortum authored Jan 16, 2024
1 parent f4a14bc commit 283716e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Python offers a wealth of mathematical functions in the form of the [math module][math-module] and built-ins such as [`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 only testing [natural numbers][nautral-number] (positive integers).
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
Expand Down

0 comments on commit 283716e

Please sign in to comment.