Question: Implement a code in java: removeChar(String str, char ch) - returns a new string - with the first occurrence of the character ch removed. If
Implement a code in java:
- removeChar(String str, char ch) - returns a new string - with the first occurrence of the character ch removed. If the character ch is not contained in the input string S, then this method returns the original string.
- Example: removeChar("save", 'a') returns the string "sve", and the method call removeChar("abc", 'q') returns "abc"
- testAnagrams (String word1, String word2) - determine whether the two input strings word1 and word2 are anagrams of one another, and return true or false.
- Example:
- testAnagrams("melon", "lemon");return true,
- testAnagrams("hi", "world"); should return false
- testAnagrams(hello, hello) should return false.
- Example:
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
