Solve: delDel
Imported By: Geoffrey Challen
/ Version: 2021.4.0
Given a String, if the string "del" appears starting at index 1, return a String where that "del" has been
deleted. Otherwise, return the string unchanged.
For this problem we're expecting only a method.
Don't define a class, include modifiers like static or public, add import statements, or add code outside the method declaration.String delDel(String input) {
return "";
}