adventofcode-2021/Day01/Part2.lua
Felix Van der Jeugt 9a85919a6f
day 1
2021-12-01 08:03:56 +01:00

11 lines
187 B
Lua

local count = 0
local a, b, c
for line in io.lines(arg[3]) do
d = tonumber(line)
if a ~= nil and a + b + c < b + c + d then
count = count + 1
end
a, b, c = b, c, d
end
print(count)