Alim Nastaev

Results 4 comments of Alim Nastaev

@zachdaniel what would be the best/quickest way to reproduce that behavior above? Thanks a lot!

Wow! Awesome! Thanks a lot for the super quick response! @zachdaniel 🥇

Kind of the same issue, but on MacOS Sonoma 14.4.1 ![Screenshot 2024-04-28 at 11 05 41 AM](https://github.com/donnemartin/interactive-coding-challenges/assets/32502172/a7f0df9d-1480-474b-a42f-9a5f836980ec) Was that resolved by any chance somehow? Would really appreciate any help here!...

You also can loop using [Enum.filter/2](https://hexdocs.pm/elixir/1.12/Enum.html#filter/2) (or `Enum.reject/2` with reversed logic) ```elixir Enum.filter(all_numbers, &rem(&1, 2) == 0) ``` But underneath, it's all `reduce` or `tail call recursion`.