mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
528 B
39 lines
528 B
2 years ago
|
## oddlength
|
||
|
|
||
|
### Instructions
|
||
|
|
||
|
Write a function that receives a slice of strings and returns a new slice with the strings in which the length is odd.
|
||
|
|
||
|
### Expected function
|
||
|
|
||
|
```go
|
||
|
func Oddlength(strings []string) []string {
|
||
|
|
||
|
}
|
||
|
```
|
||
|
|
||
|
### Usage
|
||
|
|
||
|
Here is a possible program to test your function:
|
||
|
|
||
|
```go
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"piscine"
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
l := piscine.Oddlength(["Hi", "Hola", "Ola", "Ciao", "Salut", "Hallo"])
|
||
|
fmt.Println(l)
|
||
|
}
|
||
|
```
|
||
|
|
||
|
And its output:
|
||
|
|
||
|
```console
|
||
|
$ go run .
|
||
|
[Ola Salut Hallo]
|
||
|
```
|