You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: exercises/square-root/instructions.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,9 +8,9 @@ Your task is to calculate the square root of a given number.
8
8
9
9
Here are some approaches you could use.
10
10
11
-
- Linear or binary search for a number that gives the input number when squared
12
-
- Successive approximation using Newton's or Heron's method
13
-
- Calculating one digit at a time or one bit at a time
11
+
- Linear or binary search for a number that gives the input number when squared.
12
+
- Successive approximation using Newton's or Heron's method.
13
+
- Calculating one digit at a time or one bit at a time.
14
14
15
15
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.
0 commit comments