Help me solve the "Triple Trouble" challenge on Codewars with Elixir.

antonrich

Anton

Posted on December 7, 2018

Help me solve the "Triple Trouble" challenge on Codewars with Elixir.

Triple Trouble

Create a function that will return a string that combines all of the letters of the three inputed strings in groups. Taking the first letter of all of the inputs and grouping them next to each other. Do this for every letter, see example below!

Ex) Input: "aa", "bb" , "cc" => Output: "abcabc"

Note: You can expect all of the inputs to be the same length.


You are welcome to solve the challenge in any language. I just don't know how to solve it with Elixir.

💖 💪 🙅 🚩
antonrich
Anton

Posted on December 7, 2018

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related