Wait.. the function you're in is called Remove, and you're calling it inside itself. Which isn't necessarily always an issue, but there's only 1 argument to Remove(string s) and you're passing 2 when you call it in the line string result = s.Remove(i, 1)
Wait.. the function you're in is called Remove, and you're calling it inside itself. Which isn't necessarily always an issue, but there's only 1 argument to Remove(string s) and you're passing 2 when you call it in the line string result = s.Remove(i, 1)
This comment is hidden because it contains spoiler information about the solution