Misspelling is an art form that students seem to excel at. Write a
program that removes the th character from an input string.
Input Specification
The first line of input contains a single integer
which is the number of datasets that follow.
Each dataset consists of a single line of input containing , a space,
and a string made up of uppercase letters and spaces only.
will be
less than or equal to the length of the string. The length of the string
is guaranteed to be less than or equal to
.
Output Specification
For each dataset, you should generate one line of output with the following values: The dataset number as a decimal integer (start counting at one), a space, and the misspelled string. The misspelled string is the input string with the indicated character deleted.
Sample Input
4
4 MISSPELL
1 PROGRAMMING
7 CONTEST
3 BALLOON
Sample Output
1 MISPELL
2 ROGRAMMING
3 CONTES
4 BALOON
Comments
good problem
This might be an error some of that has occurred to some of you. I used a dictionary to store the input, with the string being the key, and the character to skip as the value. However, if you receive the same string twice as input, then the original value will get overwritten. I think the 10th test case is doing something like this.
Edit: This was not the reason I got an error for my program. But it is something you should keep in mind.
Can someone look at my work? When I test it out it works, but it still says that the 10th test is failing.
Consider if your string is entirely spaces. Your code will fail because it removes all the spaces instead of just the nth character.
Also, your slicing is flawed. For a test case like:
Your code will not work correctly.
Also, you can print your output as you receive input, because DMOJ is cool like that
I made the changes but it still says that the last test is failing
Edit: I finished the problem, but before I did I worked out that the last test is a long string ending with the digits 1-0. Even though the directions said that it was a string with uppercase letters and spaces only. Hope this helps
Can someone see what is wrong with my code? I tried accounting for spaces but it is still wrong.
What if the string started with spaces?
Wait, this might be why I still can't finish it. If the string started with spaces, you would have to print the spaces out along with it? For example if the input was "4" and " abcdef," would the output be " abcef"?
No, it would be " abdef", since c would be the 4th character in the string
Oh right. ok thanks
Been workin through it and now it gives an error. So confused
Good challenge. I only need over 60 submissions.
And I thought 17 was painful...
I've tested my code and it seems to work just fine, but I keep failing tests 9 and 10, why is this? I tried handling cases where M is 0 and it didn't change. Is M negative in some cases?
I faced the same issue but @charliezhao06's comment opened my eyes lol
Did you consider if the string has spaces in it?
Massive brain.