Browse Source

Update README.md

DEV-3241-DEV-3242-corewar
Hamza elkhatri 2 years ago committed by Dav Hojt
parent
commit
888d46713e
  1. 19
      subjects/squareroot/README.md

19
subjects/squareroot/README.md

@ -6,6 +6,7 @@ Write a function that takes a number and returns the square root of that number.
- If the number is less than zero return `-1`.
### Expected function
```go
func SquareRoot(number int) int {
// Your code here
@ -21,16 +22,16 @@ package main
import (
"fmt"
"piscine"
)
func main() {
fmt.Println(piscine.SquareRoot(9))
fmt.Println(piscine.SquareRoot(16))
fmt.Println(piscine.SquareRoot(25))
fmt.Println(piscine.SquareRoot(26))
fmt.Println(piscine.SquareRoot(0))
fmt.Println(piscine.SquareRoot(-1))
fmt.Println(piscine.SquareRoot(1))
fmt.Println(SquareRoot(9))
fmt.Println(SquareRoot(16))
fmt.Println(SquareRoot(25))
fmt.Println(SquareRoot(26))
fmt.Println(SquareRoot(0))
fmt.Println(SquareRoot(-1))
fmt.Println(SquareRoot(1))
}
```
@ -45,4 +46,4 @@ $ go run .
0
-1
1
```
```

Loading…
Cancel
Save