diff options
author | George Abbott <george@gabbott.dev> | 2023-11-03 21:06:29 +0000 |
---|---|---|
committer | George Abbott <george@gabbott.dev> | 2023-11-03 21:06:29 +0000 |
commit | 0faa29f2c11a6d906f340397eca5c4bc6d0f1dc6 (patch) | |
tree | 1f67a2956dba869c3c35a1af4c533530e45f9b57 /concat.go |
Diffstat (limited to 'concat.go')
-rw-r--r-- | concat.go | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/concat.go b/concat.go new file mode 100644 index 0000000..a516dae --- /dev/null +++ b/concat.go @@ -0,0 +1,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 +} |