even if you find a wrong word, you should take all the inputs of the given test case ( so do not break the loop , instead take all the inputs and then break), otherwise the program will start reading input from where it ended in previous case,
eg
3
2 A a
4 A a a N
3 a b c
expected output :
no
no
yes
but the program will give output
no
yes
yes
(to realize this , you need to dry run on pen-paper after changing every value to their respective ASCII values, and when you break the loop, next time start another just after the point you broke )
Bro if i break it,then its just taking the value of k to be 0. I m not able to understand that why break is creating a problem even after a dry run. please help