aboutsummaryrefslogtreecommitdiff
path: root/challenge-097/abigail/perl
AgeCommit message (Collapse)Author
2021-01-30Swap the role of sections and section length (size).Abigail
We initially implemented the algorithm where the number of sections is passed in as a parameter. However, it's not the number of sections, it's the length of each section. This was an easy fix, as the algorithm is pretty symmetric.
2021-01-30Pointless splitting into sub strings.Abigail
The challenge asks to first split the given string into substring. But for the calculation of the end result, we don't actually need those substrings. To make sure we won't be disqualified, we split the given strings into substrings -- which we tell ignore. We only do this for the Perl solution; other language solutions will not include pointless statements.
2021-01-30Improvements for the Perl solution of week 97, part 1Abigail
2021-01-27Use the same algorithm for the perl solution as for other languages.Abigail
2021-01-27Fix commentAbigail
2021-01-26Perl solution for week 97, part 2Abigail
2021-01-26Use option -s (shift), instead of -t.Abigail
2021-01-26Use an option to determine the shift size.Abigail
2021-01-26Perl solution for week 97, part 1Abigail