Here\'s my code to find the middle of the linked list:
public ListNode findMiddleNode(ListNode head) { if(head == null){return null;} if(head.next == null