Skip to content

Latest commit

 

History

History
6 lines (5 loc) · 334 Bytes

54-sort-and-star.md

File metadata and controls

6 lines (5 loc) · 334 Bytes

Problem:

You will be given an vector of string(s). You must sort it alphabetically (case-sensitive!!) and then return the first value.

The returned value must be a string, and have "***" between each of its letters.

You should not remove or add elements from/to the array.

Solution