Problem I just started learning Elixir and stumbled upon this challenge over on Programming Puzzles & Code Golf. It is […]
Tag: elixir
Expose encrypted serial ID in Elixir
Problem I’m working on a Phoenix/Absinthe application and I thought to expose encrypted sequential IDs instead of UUIDs since these […]
Tail Recursion for Sum – Elixir
Problem I’m new to both Elixir and tail recursion. defmodule MyInteger do defp sum_upto(x, accumulator) when accumulator <= 1 do […]
String contains non-overlapping letter pairs
Problem I was trying my hand at learning Elixir via ancient adventofcode puzzles and was trying to write a function […]