Browse Source

DEV-3202-new-go-exercise-be-zero-subject-fix (#1522)

* DEV3202 add(Docs):add readme

* Docs(bezero): Rewrite the title

* docs(bezero): fix subject

- upgrade instructions
- add missing import 'piscine'
- fix indentation

* docs:(bezero): add missing space between line 5 and line 6

---------

Co-authored-by: hamza <hamzaelkhatri@gmail.com>
Co-authored-by: Hamza elkhatri <40549481+Hamzaelkhatri@users.noreply.github.com>
pull/1513/head
Tiago Collot 12 months ago committed by GitHub
parent
commit
b0ded8d1b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 42
      subjects/bezero/README.md

42
subjects/bezero/README.md

@ -0,0 +1,42 @@
## bezero
### Instructions
Write a function that takes a slice of integers as an argument and returns the same slice by initializing all the elements to 0.
- If the slice is empty, return an empty slice.
### Expected function
```go
func BeZero(slice []int) []int {
}
```
### Usage
Here is a possible program to test your function:
```go
package main
import (
"fmt"
"piscine"
)
func main() {
fmt.Println(piscine.BeZero([]int{1, 2, 3, 4, 5, 6}))
fmt.Println(piscine.BeZero([]int{}))
}
```
And its output:
```console
$ go run .
[0 0 0 0 0 0]
[]
```
Loading…
Cancel
Save