Update README.md

This commit is contained in:
Hamza elkhatri 2022-07-07 22:51:25 +01:00 committed by Dav Hojt
parent ea8573457b
commit 888d46713e
1 changed files with 10 additions and 9 deletions

View File

@ -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
```
```