Question: Write a Java method called findDistinguishingChar that gets two String objects and returns the character whose frequency of occurrence in the two Strings differs the

Write a Java method called findDistinguishingChar that gets two String objects and returns the character whose frequency of occurrence in the two Strings differs the most. For example,
findDistinguishingChar("apple", "pale") is letter 'p' since 'p' appears twice in "apple" and once in "pale". The rest of characters either don't appear in both strings or appear once.
findDistinguishingChar("banana", "ban") is 'a', findDistinguishingChar("ban", "banner") is either 'n','e', or 'r'(all three outputs are acceptable b/c there is more than one correct answer.).

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!