Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
12
Task/Stack/Elixir/stack.elixir
Normal file
12
Task/Stack/Elixir/stack.elixir
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
defmodule Stack do
|
||||
def new, do: []
|
||||
|
||||
def empty?([]), do: true
|
||||
def empty?(_), do: false
|
||||
|
||||
def pop([h|t]), do: {h,t}
|
||||
|
||||
def push(h,t), do: [h|t]
|
||||
|
||||
def top([h|_]), do: h
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue