Skip to content

Latest commit

 

History

History
8 lines (7 loc) · 371 Bytes

18-abbreviate-a-two-word-name.md

File metadata and controls

8 lines (7 loc) · 371 Bytes

Problem:

Write a function to convert a name into initials. This kata strictly takes two words with one space in between them.

The output should be two capital letters with a dot separating them.

It should look like this:

Sam Harris => S.H

Patrick Feeney => P.F

Solution