Skip to content

Commit 34af70c

Browse files
committed
Split description into introduction and instructions
1 parent 7807e7a commit 34af70c

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

exercises/square-root/description.md renamed to exercises/square-root/instructions.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,4 @@
1-
# Description
2-
3-
We are launching a deep space exploration rocket and we need a way to make sure the navigation system stays on target.
4-
5-
The first step in our coordinate calculation involves taking a number as input and finding another number which multiplied by itself will equal our input number, or in other words, finding the square root of our input number.
6-
7-
Because the journey will be very long, we had to make our rocket’s onboard computer very power efficient so it wouldn’t drain the batteries.
8-
Unfortunately that means that we can’t rely on fancy math libraries and functions, as they would take more power.
9-
Instead we want to calculate or approximate the square root directly.
1+
# Instructions
102

113
Your task is to implement a calculation of the square root of a given number.
124

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Introduction
2+
3+
We are launching a deep space exploration rocket and we need a way to make sure the navigation system stays on target.
4+
5+
The first step in our coordinate calculation involves taking a number as input and finding another number which multiplied by itself will equal our input number, or in other words, finding the square root of our input number.
6+
7+
Because the journey will be very long, we had to make our rocket’s onboard computer very power efficient so it wouldn’t drain the batteries.
8+
Unfortunately that means that we can’t rely on fancy math libraries and functions, as they would take more power.
9+
Instead we want to calculate or approximate the square root directly.

0 commit comments

Comments
 (0)