Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
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