Another update from ingydotnet^djgoku
This commit is contained in:
parent
91df62d461
commit
948b86eafa
7604 changed files with 108452 additions and 22726 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