Daily Codewars #2019-03-01

Question

문제링크 : [8 kyu]Abbreviate a Two Word Name

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 seperating them.

It should look like this:

Sam Harris => S.H

Patrick Feeney => P.F

My Solution



@dinglemouse Solution


1

@ Solution


1

@ Solution