I'm trying to create an array of numbers from 1 - 59. I've got the basic array coded out, but for the life of me I can't figure out how to get numbers 1, 2, 3, 4, 5, 6, 7, 8, 9 to have a leading zero, so that they're double digits which makes it look nicer with all the other 2 digit numbers.
How do I get that leading zero with the .map function that I'm already using, would an if statement work?
Here is my code for what my array is and the result I get.
let arrayOfMinutes = (0...59).map { "\($0)" }
["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55", "56", "57", "58", "59"]