Skip to content

Latest commit

 

History

History

findTheCapitals

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Find the capitals

7 kyu link to kata
my solution

Instructions

Write a function that takes a single string (word) as argument. The function must return an ordered list containing the indexes of all capital letters in the string.

Example

Test.assertSimilar( capitals('CodEWaRs'), [0,3,4,6] );