Browse Source

Update README.md

pull/1327/head
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`. - If the number is less than zero return `-1`.
### Expected function ### Expected function
```go ```go
func SquareRoot(number int) int { func SquareRoot(number int) int {
// Your code here // Your code here
@ -21,16 +22,16 @@ package main
import ( import (
"fmt" "fmt"
"piscine" )
func main() { func main() {
fmt.Println(piscine.SquareRoot(9)) fmt.Println(SquareRoot(9))
fmt.Println(piscine.SquareRoot(16)) fmt.Println(SquareRoot(16))
fmt.Println(piscine.SquareRoot(25)) fmt.Println(SquareRoot(25))
fmt.Println(piscine.SquareRoot(26)) fmt.Println(SquareRoot(26))
fmt.Println(piscine.SquareRoot(0)) fmt.Println(SquareRoot(0))
fmt.Println(piscine.SquareRoot(-1)) fmt.Println(SquareRoot(-1))
fmt.Println(piscine.SquareRoot(1)) fmt.Println(SquareRoot(1))
} }
``` ```
@ -45,4 +46,4 @@ $ go run .
0 0
-1 -1
1 1
``` ```

Loading…
Cancel
Save