Interview Question #9:
Write a function that will return the max character in a string.π€ You may get variation to the question as well like Write a function that will return that most commonly used character in a sentence
or similar.
Additional Rules:
- Treat lowercase and uppercase the same
- Only count alphabetic characters, no symbols and numbers
- Return one max character in case of multiple max characters
If you need practice, try to solve this on your own without looking at the solution below.
Feel free to bookmark π even if you don't need this for now. You may need to refresh/review down the road when it is time for you to look for a new role.
Codepen:
If you want to play around and experiment with the code: https://codepen.io/angelo_jin/pen/abwYGPo
Solution below will cycle on every string and create a map. Once the map is created, cycle on the map and use the variables created to see if the current char has greater count. Assign char and max count accordingly.
// Helper function to remove non alphabetic characters and transform string to lowercase
function normalizeString(str) {
return str
.replace(/[^\w]/g, '')
.toLowerCase()
}
function getMaxChar(str) {
const charMap = {}
let max = 0
let maxChar = ''
for (let char of normalizeString(str)) {
if (charMap[char]) {
charMap[char]++
} else {
charMap[char] = 1
}
}
for (let char in charMap) {
if (charMap[char] > max) {
max = charMap[char]
maxChar = char
}
}
return maxChar
}
Happy coding and good luck if you are interviewing!
If you want to support me - Buy Me A Coffee
Video below if you prefer instead of bunch of text/code ππ
Top comments (9)
would work too. thanks
my only concern is the
.sort
as it will be slow when dataset is huge but it is not a problem on small dataset. Could prolly use lib or even custom merge sort or something equivalentThe only issue with your example is the double loop, you can achieve the same with the following which takes advantage of how
split
works:99% sure it returns the same as your function.
thank you for this solution! Learned something today. I took your example and translate it to more readable form.
Yeah sorry, I already had the main part of the function as part of a code snippets library and it is partially minimised due to a mistake I made...I have about 100 snippets that aren't very readable like that!
I have copied the
normalisedString.split()
etc. part back into my code snippets library so it is readable again, so thanks for that πMaybe I will finally get around to fixing them all as they do come in handy and it just laziness stopping me fixing them!
LOL dude, nothing to apologize from. You actually improved my solution helping out myself and other folks who will read this post. So thank you and I am glad that you came in and share that snippet. π
Or, in a one-liner...
π
Curious as to why you hide my replies? Would they be more acceptable if not 'golfed' (written in as few characters as possible) - and were more 'readable'
Will you engage in a civil conversation? Or continue to hide comments?
Some comments have been hidden by the post's author - find out more