Compare commits

...

8 Commits

  1. 18
      subjects/canyoucount/README.md
  2. 39
      subjects/popint/README.md

18
subjects/canyoucount/README.md

@ -0,0 +1,18 @@
## canyoucount
### Instructions
Your program will receive some arguments. Count how many characters they have in total and print them.
- If the number of arguments is invalid it should print `0`.
### Usage
```console
$ go run . "hello" "how are you?" | cat -e
17$
$ go run . "hi" | cat -e
2$
$ go run . | cat -e
0$
```

39
subjects/popint/README.md

@ -0,0 +1,39 @@
## popint
### Instructions
Write a function that receives a slice of int and returns a new slice without the last element.
### Expected function
```go
func PopInt(ints []int) []int {
}
```
### Usage
Here is a possible program to test your function:
```go
package main
import (
"piscine"
"fmt"
)
func main() {
ints := []int{6, 7, 8, 9,}
l := piscine.PopInt(ints)
fmt.Println(l)
}
```
And its output:
```console
$ go run .
[6 7 8]
```
Loading…
Cancel
Save