Skip to content

Latest commit

 

History

History

capitalize_first

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

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"]