Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
11
Task/Dot-product/Elixir/dot-product.elixir
Normal file
11
Task/Dot-product/Elixir/dot-product.elixir
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
defmodule Vector do
|
||||
def dot_product(a,b) when length(a)==length(b), do: dot_product(a,b,0)
|
||||
def dot_product(_,_) do
|
||||
raise ArgumentError, message: "Vectors must have the same length."
|
||||
end
|
||||
|
||||
defp dot_product([],[],product), do: product
|
||||
defp dot_product([h1|t1], [h2|t2], product), do: dot_product(t1, t2, product+h1*h2)
|
||||
end
|
||||
|
||||
IO.puts Vector.dot_product([1,3,-5],[4,-2,-1])
|
||||
Loading…
Add table
Add a link
Reference in a new issue