blob: a516daecf516d3e69153ced7b82acc881b8a71de (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package badtudexo
import (
st "saggytrousers"
"errors"
)
// Take two sheets, and concatenate them.
// Note: this done wrong at the moment, it should take [][]string not []string.
func Concat(fst, snd []string) []string {
return append(append([]string{}, fst...), snd...)
}
func ConcatCheckHeaders(fst, snd, fsthd, sndhd []string) ([]string, error) {
if !st.SliceEq(fsthd, sndhd) {
return []string{}, errors.New("Header mismatch")
}
return Concat(fst, snd), nil
}
|