You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
defmoduleDay9Part1doimportDay9Shared,except: [parse: 1]defsolve(values)dovalues|>Stream.map(&extrapolate/1)|>Stream.map(fnextras->extras|>Stream.map(&List.last/1)|>Enum.sum()end)|>Enum.sum()endendinput|>Day9Shared.parse()|>Day9Part1.solve()# 1934898173 is too low# 1934898178 is the right answer