Introduction
It is time to review the algorithm again. I posted the question more than 5 month ago, the link is here.
Algorithm Practice
I had a mock interview and the peer chose to use C++ language. I did some research how to translate those four lines of C# code to C++ language.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var words = | |
Regex.Split(sentence, "[ ,?!.]") | |
.Select(x => x.Trim()) | |
.Where(x => !string.IsNullOrEmpty(x)) | |
.GroupBy(x => x, StringComparer.OrdinalIgnoreCase) | |
.OrderByDescending(g => g.Count()); | |
var summary = $"{{{string.Join(", ", words.Select(g => $"{g.Key}: {g.Count()}"))}}}"; |
No comments:
Post a Comment