(no title)
bthornbury | 1 year ago
{
name: "Large Input Slice",
input: []any{"A", "B", "C", "D", "E", "F"},
chunkSize: 3,
expectedChks: [][]any{{"A", "B", "C"}, {"D", "E", "F"}},
},
{
name: "Remaindered Large Input Slice",
input: []any{"W", "X", "Y", "Z", "1", "2"},
chunkSize: 4,
expectedChks: [][]any{{"W", "X", "Y", "Z"}, {"1", "2"}},
},
No comments yet.