Skip to content

Instantly share code, notes, and snippets.

@SophieDeBenedetto
Created December 7, 2020 21:27
Show Gist options
  • Select an option

  • Save SophieDeBenedetto/6814b26aa0d4d37d48f005695b44334f to your computer and use it in GitHub Desktop.

Select an option

Save SophieDeBenedetto/6814b26aa0d4d37d48f005695b44334f to your computer and use it in GitHub Desktop.
defmodule Accountant do
@sum 2020
def product_of_equals_twenty_twenty([_head | tail] = list) do
product = get_two(list)
if product do
product
else
product_of_equals_twenty_twenty(tail)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment