Skip to content

Instantly share code, notes, and snippets.

@seanmor5
Created December 2, 2021 23:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seanmor5/1d34da2d09bd0be01e53796e08fdb3d3 to your computer and use it in GitHub Desktop.
Save seanmor5/1d34da2d09bd0be01e53796e08fdb3d3 to your computer and use it in GitHub Desktop.
# part 1
File.read!('aoc/2.txt')
|> String.replace("\r", "") # i am on windows right now :(
|> String.split("\n")
|> Enum.map(fn line ->
[direction, amt] = String.split(line)
amt_int = String.to_integer(amt)
case direction do
"forward" ->
{amt_int, 0}
"up" ->
{0, -amt_int}
"down" ->
{0, amt_int}
_ ->
raise "aoc is broken"
end
end)
|> Enum.unzip()
|> then(fn {xs, ys} -> Nx.multiply(Nx.sum(Nx.tensor(xs)), Nx.sum(Nx.tensor(ys))) end)
# part 2
File.read!('aoc/2.txt')
|> String.replace("\r", "") # i am on windows right now :(
|> String.split("\n")
|> Enum.map(fn line ->
[direction, amt] = String.split(line)
amt_int = String.to_integer(amt)
case direction do
"forward" ->
{amt_int, 0}
"up" ->
{0, -amt_int}
"down" ->
{0, amt_int}
_ ->
raise "aoc is broken"
end
end)
|> Enum.unzip()
|> then(fn {forwards, aims} ->
aims = Nx.tensor(aims)
forwards = Nx.tensor(forwards)
# do a cumulative sum of aims to get aims at each forward point
n = Nx.size(aims)
padding_config = [{n - 1, 0}]
strides = [1]
window_shape = {n}
temporal_aims = Nx.window_sum(aims, window_shape, padding: padding_config)
depths = Nx.dot(temporal_aims, forwards)
horizontal = Nx.sum(forwards)
Nx.multiply(depths, horizontal)
end)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment