Skip to content

Commit

Permalink
docs(checkpoints-exercises): remove piscine imports
Browse files Browse the repository at this point in the history
  • Loading branch information
MSilva95 committed Jul 4, 2023
1 parent 4974a86 commit 231a6df
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions subjects/binarycheck/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ Write a function that takes an int as an argument and returns 0 if the number is

### Expected function

```go
func BinaryCheck(nbr int) int {

}
```

### Usage

Expand All @@ -19,16 +21,14 @@ package main

import (
"fmt"

"piscine"
)

func main() {
fmt.Println(piscine.BinaryCheck(5))
fmt.Println(piscine.BinaryCheck(0))
fmt.Println(piscine.BinaryCheck(8))
fmt.Println(piscine.BinaryCheck(-9))
fmt.Println(piscine.BinaryCheck(-4))
fmt.Println(BinaryCheck(5))
fmt.Println(BinaryCheck(0))
fmt.Println(BinaryCheck(8))
fmt.Println(BinaryCheck(-9))
fmt.Println(BinaryCheck(-4))
}
```

Expand Down

0 comments on commit 231a6df

Please sign in to comment.