Question
This is in Java being run through Eclipse. /** * Given one string, return the most common character. * * Example: * mostCommonCharacter(aaab) returns 'a'
This is in Java being run through Eclipse.
/** * Given one string, return the most common character. * * Example: * mostCommonCharacter("aaab") returns 'a' * mostCommonCharacter("abcbcdc") returns 'c' * * You can assume that your string will not be empty and that * one character will be more common than all the others (i.e. there * won't be a tie for the most common character) * * Your solution should use a pair of nested for loops. You might be * tempted to use something like python's dictionary here, but * we'll save that till later when we cover hashmaps. * * Requires: for loops, strings */
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started