
v0.39: Grademe is back in your terminal.
Try the CLI betaSplit a run of rows into files that each hold at most the row limit.
October 2020. Public Health England was moving lab results between systems in an old Excel format that stops at 65536 rows, and every file that filled up simply dropped whatever came next. 15841 positive cases vanished before anyone noticed. Those people were never called and their contacts were never traced. Split the rows into files that fit.
split_batches(out, 10, 4)Expected result
3: 4 4 2For your own tracking. Tests grade your code.
split_batches(out, 8, 4)Expected result
2: 4 4split_batches(out, 65537, 65536)Expected result
2: 65536 1Expected files
batches.cAllowed functions
None. Write every helper yourself.
