Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

thore soultion #6

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .idea/$CACHE_FILE$

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 29 additions & 0 deletions .idea/adventofcode-kata.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

454 changes: 454 additions & 0 deletions .idea/dbnavigator.xml

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 26 additions & 3 deletions lib/day1.ex
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ defmodule AocKata.Day1 do
"""
@spec resulting_frequency(Enumerable.t()) :: integer
def resulting_frequency(frequency_changes) do
# TODO implement
Enum.reduce frequency_changes, 0, fn(num, sum)->String.to_integer(num)+sum end
end

@doc """
Expand Down Expand Up @@ -55,8 +55,31 @@ defmodule AocKata.Day1 do
"""
@spec resulting_frequency_fixed(Enumerable.t()) :: integer
def resulting_frequency_fixed(frequency_changes) do
frequency_changes = Stream.repeatedly(fn -> frequency_changes end) |> Stream.flat_map(& &1)
#frequency_changes = Stream.repeatedly(fn -> frequency_changes end) |> Stream.flat_map(& &1)
agent = History.start_link()
Enum.reduce_while(
frequency_changes,
0,
fn(num, sum)->
temp = String.to_integer(num)+sum
agent.append(temp)
{:cont, temp}
end)
end
end

defmodule History do
use Agent

def start_link do
Agent.start_link(fn -> [] end, name: __MODULE__)
end

def value do
Agent.get(__MODULE__, & &1)
end

# TODO
def append(latest_acc) do
Agent.update(__MODULE__, &(&1 ++ [latest_acc]))
end
end