Browse Source

docs(concatalternate): removed redundant instruction

DEV-3184-new-go-exercise-concatalternate
Tiago Collot 2 years ago
parent
commit
5803fdc57b
  1. 1
      subjects/concatalternate/README.md

1
subjects/concatalternate/README.md

@ -6,7 +6,6 @@ Write a function `ConcatAlternate()` that receives two slices of an `int` as arg
- The input slices can be of different lengths.
- The new slice should return the elements of the larger slice first and then the elements of the smaller 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.
- The new slice should be in the same order as the input slices.
### Expected function

Loading…
Cancel
Save