Skip to content

Commit 1af516d

Browse files
committed
[euler] add solution for problem 18
1 parent 8c04c1c commit 1af516d

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

euler/prob018-felher.pl

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
use v6;
2+
3+
my $triangle =
4+
'75
5+
95 64
6+
17 47 82
7+
18 35 87 10
8+
20 04 82 47 65
9+
19 01 23 75 03 34
10+
88 02 77 73 07 63 67
11+
99 65 04 28 06 16 70 92
12+
41 41 26 56 83 40 80 70 33
13+
41 48 72 33 47 32 37 16 94 29
14+
53 71 44 65 25 43 91 52 97 51 14
15+
70 11 33 28 77 73 17 78 39 68 17 57
16+
91 71 52 38 17 14 91 43 58 50 27 29 48
17+
63 66 04 68 89 53 67 30 73 16 69 87 40 31
18+
04 62 98 27 23 09 70 98 73 93 38 53 60 04 23';
19+
20+
my @lines = string-to-array($triangle).reverse;
21+
22+
# reduce the triangle by adding up the lines until only one line with one
23+
# element is left; then print it.
24+
say @lines.reduce: &add-maxima;
25+
26+
# this function assumes the shorter and longer array to be consecutive lines
27+
# in an reversed triangle. It then adds each of the maxima of consecutive fields
28+
# of the longer array to their shared diagonal neighbour in the shorter array.
29+
sub add-maxima(@longer, @shorter is copy) {
30+
for 0 .. @longer - 2 -> $i {
31+
@shorter[$i] += max @longer[$i], @longer[$i + 1];
32+
}
33+
}
34+
35+
sub string-to-array($string) {
36+
my @lines = $string.lines;
37+
@lines .= map(-> $line { $line.comb(/\d+/).item });
38+
}

0 commit comments

Comments
 (0)