Skip to content

Commit 46670c7

Browse files
authored
Update description.md
Comply with markdown style guide for bullet lists
1 parent d4f9c27 commit 46670c7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

exercises/square-root/description.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ Because the journey will be very long, we had to make our rocket’s onboard com
88

99
Your task is to implement a function that calculates or approximates the square root of a given number.
1010

11-
* Try to avoid using the pre-existing math libraries of your language.
12-
* As input you’ll be given a positive whole number, i.e. 1, 2, 3, 4…
13-
* The function also only needs to output positive whole numbers.
11+
- Try to avoid using the pre-existing math libraries of your language.
12+
- As input you’ll be given a positive whole number, i.e. 1, 2, 3, 4…
13+
- The function also only needs to output positive whole numbers.
1414

1515
Examples of some approaches you could consider are:
1616

17-
* Linear or binary search for a number that gives the input number when squared
18-
* Successive approximation using Newton's or Heron's method
19-
* Calculating one digit at a time or one bit at a time
17+
- Linear or binary search for a number that gives the input number when squared
18+
- Successive approximation using Newton's or Heron's method
19+
- Calculating one digit at a time or one bit at a time
2020

2121
You can check out the Wikipedia pages on [integer square root][integer-square-root] and [methods of computing square roots][computing-square-roots] to help with choosing a method of calculation.
2222

0 commit comments

Comments
 (0)