Not able to pass two test cases

question : https://hack.codingblocks.com/app/practice/1/4/problem
answer: https://hack.codingblocks.com/app/practice/1/4/problem

please share code in cb ide
instead of code u have provide q link twice

   ListNode* middleNode(ListNode* head) {
        ListNode *s = head, *f = head; 
        while(f!= NULL and f->next!= NULL){
            s = s->next;
            f = f->next->next;
            
        }
        return s;
    }

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.