Capitalize First Instructions Given array of strings implement a recursive function which will capitalize first letter of each string in the array. Challenge | Solution Examples capitalize_first(["igor"]) # ["Igor"] capitalize_first(["igor", "wojda"]) # ["Igor", "Wojda"]