We've stopped offering our services, but you can check our last product which is still in active development.
humadroid.io is an employee and performance management software. It's an unique tool allowing everyone to be in the loop - by having up to date info about co-workers, time-off, benefits, assets, helping with one-on-ones, being a go-to place for company-wide announcements.
Check out humadroid.io
humadroid.io is an employee and performance management software. It's an unique tool allowing everyone to be in the loop - by having up to date info about co-workers, time-off, benefits, assets, helping with one-on-ones, being a go-to place for company-wide announcements.
Check out humadroid.io
Want to learn?
Elixir Course Online | Prograils - Software Development Company
Lists exercises
Exercises
Create following lists using pipe and concatenation operators:
[]
,[:one]
,[1, 2, 3]
,["hello", "world"]
.
Use list delete operator to transform lists in the following way:
[1, 2, 2, 3] -> [1]
,[1, 1, 1] -> []
,[1, 2, 3, 2, 3, 4] -> [1, 2, 4]
.
Play around in
IEx
with List module functions.