Answered step by step
Verified Expert Solution
Link Copied!

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.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Oracle 11G SQL

Authors: Joan Casteel

2nd Edition

1133947360, 978-1133947363

More Books

Students also viewed these Databases questions

Question

List and describe the types of decisions managers make.

Answered: 1 week ago