Some problem solving programming challenges, i have solved. Not all are here, but started adding them slowly.
This project is maintained by chankruze
You are given a list of names for a fundraiser, but you need to keep the names relatively anonymous. You are tasked with getting the initials for each name provided.
Given a list of first and last names, take the first letter from each name to create initials and output them as a space-separated string.
The first input denotes the number of names in the list (N). The next N lines contain the list elements as strings.
A string containing the initials of each name in the original list, separated by spaces.
3
Nick Dunburry
Tommy Newborne
David James
ND TN DJ
Language | Solution |
---|---|
C | not available |
CPP | not available |
C# | not available |
Python | available |
Java | not available |
Ruby | not available |
Swift | not available |