Question: I need this in java please Given a non-empty string and an int n, return a new string where the char at index n has

I need this in java please
Given a non-empty string and an int n, return a new string where the char at index n has been removed. The value of n will be a valid index of a char in the original string (i.e. n will .be in the range 0.. str.length()-1 inclusive) write a function to accomplish the above "missing Char("kitten", 1) "ktten "missingChar("kitten", 0) - "itten "missing Char("kitten", 4) - "kittn
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
