Please check the code

few testcases are passing and it showing run error for remaining testcases

@tharun you are not taking care of the case when k>n. For that make k=k%n.
your findkth node function, would change the head, as you are passing it by reference.

You may refer to this code.
If this resolves your doubt mark it as resolved.