mirror of
https://codeberg.org/andyscott/exercism.git
synced 2024-11-09 21:30:47 -05:00
28 lines
No EOL
846 B
Markdown
28 lines
No EOL
846 B
Markdown
# Square Root
|
|
|
|
Welcome to Square Root on Exercism's Zig Track.
|
|
If you need help running the tests or submitting your code, check out `HELP.md`.
|
|
|
|
## Instructions
|
|
|
|
Given a natural radicand, return its square root.
|
|
|
|
Note that the term "radicand" refers to the number for which the root is to be determined.
|
|
That is, it is the number under the root symbol.
|
|
|
|
Check out the Wikipedia pages on [square root][square-root] and [methods of computing square roots][computing-square-roots].
|
|
|
|
Recall also that natural numbers are positive real whole numbers (i.e. 1, 2, 3 and up).
|
|
|
|
[square-root]: https://en.wikipedia.org/wiki/Square_root
|
|
[computing-square-roots]: https://en.wikipedia.org/wiki/Methods_of_computing_square_roots
|
|
|
|
## Source
|
|
|
|
### Created by
|
|
|
|
- @keiravillekode
|
|
|
|
### Based on
|
|
|
|
wolf99 - https://github.com/exercism/problem-specifications/pull/1582 |