Skip to content

Latest commit

 

History

History
2 lines (2 loc) · 285 Bytes

README.md

File metadata and controls

2 lines (2 loc) · 285 Bytes

Square-Every-Digit

Welcome. In this kata, you are asked to square every digit of a number and concatenate them. For example: An input of 765 will/should return 493625 because 72 is 49, 62 is 36, and 52 is 25. (49-36-25) Note: The function accepts an integer and returns an integer