aboutsummaryrefslogtreecommitdiff
path: root/challenge-151/abigail/lua/ch-2.lua
diff options
context:
space:
mode:
authorMohammad S Anwar <Mohammad.Anwar@yahoo.com>2022-02-08 20:03:07 +0000
committerGitHub <noreply@github.com>2022-02-08 20:03:07 +0000
commit9e8211950a93c9370824c4cd25092d2c72cef692 (patch)
treeb02229e447f129e60744b12f9872796e22e41c40 /challenge-151/abigail/lua/ch-2.lua
parentbdaaa49f20ca56057a3a478a383f0af2253f6f6b (diff)
parenta09d0dd70c22dc386c4280cfae04158098dcc924 (diff)
downloadperlweeklychallenge-club-9e8211950a93c9370824c4cd25092d2c72cef692.tar.gz
perlweeklychallenge-club-9e8211950a93c9370824c4cd25092d2c72cef692.tar.bz2
perlweeklychallenge-club-9e8211950a93c9370824c4cd25092d2c72cef692.zip
Merge pull request #5629 from Abigail/abigail/week-151
Abigail/week 151
Diffstat (limited to 'challenge-151/abigail/lua/ch-2.lua')
-rw-r--r--challenge-151/abigail/lua/ch-2.lua25
1 files changed, 25 insertions, 0 deletions
diff --git a/challenge-151/abigail/lua/ch-2.lua b/challenge-151/abigail/lua/ch-2.lua
new file mode 100644
index 0000000000..d8ac15c101
--- /dev/null
+++ b/challenge-151/abigail/lua/ch-2.lua
@@ -0,0 +1,25 @@
+#!/opt/local/bin/lua
+
+--
+-- See https://theweeklychallenge.org/blog/perl-weekly-challenge-151
+--
+
+--
+-- Run as: lua ch-2.lua < input-file
+--
+
+for line in io . lines () do
+ local h = {}
+ for val in line : gmatch ("%d+") do
+ h [#h + 1] = val
+ end
+
+ h [#h + 1] = 0
+ h [#h + 1] = 0
+
+ for i = #h - 2, 3, -1 do
+ h [i] = math . max (h [i] + h [i + 2], h [i + 1])
+ end
+
+ print (h [1] + h [3])
+end