Created
January 2, 2016 03:07
-
-
Save ktec/634a667ad0f6b652e856 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule Day1 do | |
defp _position(str) do | |
str | |
|> Stream.unfold(&String.next_codepoint/1) | |
|> Stream.map(&do_decode/1) | |
|> Stream.with_index | |
|> Stream.transform(0, &do_floor/2) | |
|> Stream.map(&IO.inspect(&1)) | |
|> Enum.to_list | |
|> List.last | |
end | |
defp do_decode("("), do: 1 | |
defp do_decode(")"), do: -1 | |
defp do_decode(_), do: 0 | |
defp do_floor({x,index}, acc) when acc + x != -1 do | |
floor = acc + x | |
position = index + 1 | |
IO.puts "position: #{position}, floor: #{floor}" | |
{[{position, floor}], floor} | |
end | |
defp do_floor({x,index}, acc) do | |
floor = acc + x | |
position = index + 1 | |
IO.puts "Found the floor -1 at position: #{position}" | |
{:halt, position} | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The output from the
Day1.position("())")
call returns{2,0}
but really I want to get the position value of3