Exercism Strain: Collaborative implementation and benchmarking
This post covers an incremental implementation of the Exercism “strain” exercise that I worked on collaboratively with one of my colleagues at Ackama, Daniel Jauch. The Strain exercise brief is to implement keep and discard functions within an Elixir module named Strain, without using the Enum.filter module, for example: iex> Strain.keep([1, 2, 3], fn e -> e < 10 end)...