Can I have your number?
Write a function that accepts an array of 10 integers (between 0 and 9), that returns a string of those numbers in the form of a phone number.
The returned format must be correct in order to complete this challenge.
Don't forget the space after the closing parentheses!
Today's challenge comes from user xDranik on Codewars
Thank you to CodeWars, who has licensed redistribution of this challenge under the 2-Clause BSD License!
Want to propose a challenge for a future post? Email yo+challenge@dev.to with your suggestions!
Latest comments (26)
Go:
Here is the simple solution with PHP:
Python
anyone's skin crawling?
Ruby
Better late than never ;p
Here's my attempt in PHP
codesandbox.io/embed/daily-challen...
Haskell (US formatting):
Clojure:
Erlang: (in the REPL)
Or you can use io_lib:format and assign the result to a variable instead.
Checking for valid input is fairly trivial, but the Erlang convention is to assume that something this far into the system is okay, and correct for the error by dying and letting the supervisor deal with it.