All Questions
3 questions
1
vote
2
answers
118
views
Extract and divide algorithm implementation in Elixir
I just started learning Elixir and stumbled upon this challenge over on Programming Puzzles & Code Golf. It is a well-suited task for beginners, so I chose to give it a go (to be clear, give it a ...
3
votes
0
answers
446
views
Recursive solution for Longest Substring Without Repeating Characters written in Elixir
Here's my recursive implementation of a sliding window algorithm to find the longest substring of a given string without repeating characters. Is there a more idiomatic-Elixir way to write this?
<...
3
votes
1
answer
485
views
Tail Recursion for Sum - Elixir
I'm new to both Elixir and tail recursion.
...