Created
February 20, 2023 16:47
-
-
Save chrisdel101/50a398070f03fabf3d4fb5916a33124d to your computer and use it in GitHub Desktop.
Sum sqaures
This file contains hidden or 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 SquareSum do | |
def square_sum([head | tail]) do | |
(head * head) + square_sum(tail) | |
end | |
def square_sum([]) do | |
0 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment