Compare commits

...

8 Commits

Author SHA1 Message Date
Tiago Collot 286a3ed0fa docs(concatalternate): instructions upgrade 2 years ago
Tiago Collot 5803fdc57b docs(concatalternate): removed redundant instruction 2 years ago
Tiago Collot f11a0e9570 docs(concatalternate): rename folder name 2 years ago
Tiago Collot c66e43cf03 docs(concatalternate): upgrade 'func main()' 2 years ago
Tiago Collot 819071b28b docs(concatalternate): fix subject 2 years ago
Hamza elkhatri 46e576c74a
docs(ConcatAlter): remove `-` in the first line 2 years ago
Hamza elkhatri 0b1fb869af
docs(ConcatAlter):fix format 2 years ago
hamza 7613320ce1 DEV-3184 add(docs):add subject of concatalter 2 years ago
  1. 46
      subjects/concatalternate/README.md

46
subjects/concatalternate/README.md

@ -0,0 +1,46 @@
## concatalternate
### Instructions
Write a function `ConcatAlternate()` that receives two slices of an `int` as arguments and returns a new slice with the result of the alternated values of each slice.
- The input slices can be of different lengths.
- The new slice should start with an element of the largest slice.
- If the slices are of equal length, the new slice should return the elements of the first slice first and then the elements of the second slice.
### Expected function
```go
func ConcatAlternate(slice1,slice2 []int) []int {
}
```
### Usage
Here is a possible program to test your function:
```go
package main
import (
"fmt"
"piscine"
)
func main() {
fmt.Println(piscine.ConcatAlternate([]int{1, 2, 3}, []int{4, 5, 6}))
fmt.Println(piscine.ConcatAlternate([]int{2, 4, 6, 8, 10}, []int{1, 3, 5, 7, 9, 11}))
fmt.Println(piscine.ConcatAlternate([]int{1, 2, 3}, []int{4, 5, 6, 7, 8, 9}))
fmt.Println(piscine.ConcatAlternate([]int{1, 2, 3}, []int{}))
}
```
And its output:
```console
$ go run .
[1 4 2 5 3 6]
[1 2 3 4 5 6 7 8 9 10 11]
[4 1 5 2 6 3 7 8 9]
[1 2 3]
```
Loading…
Cancel
Save