aboutsummaryrefslogtreecommitdiff
path: root/challenge-076
diff options
context:
space:
mode:
Diffstat (limited to 'challenge-076')
-rw-r--r--challenge-076/markus-holzer/raku/ch-2.raku2
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-076/markus-holzer/raku/ch-2.raku b/challenge-076/markus-holzer/raku/ch-2.raku
index 95bebac892..28e90a4d17 100644
--- a/challenge-076/markus-holzer/raku/ch-2.raku
+++ b/challenge-076/markus-holzer/raku/ch-2.raku
@@ -13,4 +13,4 @@ sub rotated-data {
@chars.batch( $width ), |( (0,0), (0,1), (1,0) ).map: &rotate-data }
sub rotate-data( @offsets ) {
- (^$width).map: { @chars[ ($_ + @offsets[0]), ($_ + $width + @offsets[1]) ... * ] } } \ No newline at end of file
+ (^$width).map: { @chars[ ($_ + @offsets[0]), ($_ + $width + @offsets[1]) ... * ] } }