Introduction
It is the first time I understand that the technical strength can only be trained by dedicated practice. Today I had chance to walk through those five lines of C# code, and explained to the peer how to apply those things in C++ code.
Will come back to document more about the experience as an interviewer. My last blog about the code review is here less than one month ago.
Algorithm talk
The peer likes to write C++ but the complexity of code is beyond his expectation. 30 minutes is too short to come out the workable solution.
Here is the C# code written by code review on stackexchange.com:
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()}"))}}}"; |
Actionable Item
Plan to do some research about post vacation syndrome. I need to get out of relationships from the family back in China, less frequent using wechat to communicate family in China anymore, and get back to my normal work day in the city of Vancouver. One thing I choose to do after I overcome jet lag is to practice mock interview every day 10:00 PM. Need to meet new people and learn more about the industry and people.
Give myself a pat on my shoulder. Show my report of first mock interview after a month break.
No comments:
Post a Comment