What's my middle name?
tkellehe opened this issue · 0 comments
tkellehe commented
5 bytes
Input must be an array of the names.
Ẹ⁻2¤İ
How it works
# Pushes the input on implicitly.
Ẹ⁻2¤İ
Ẹ # Takes the last item of an array and pushes it to the back.
⁻2 # Pop the first two items off of the array.
¤ # Push the string "¤" onto the stack which represents a space.
İ # Concatenates the array elements by the "¤" string.
# Implicitly output the top of the stack to the screen.