category-wise-problems

contains category wise problems(data structures, competitive) of popular platforms.

View the Project on GitHub mayankdutta/category-wise-problems

878 Middle of the linked list

Code ```cpp ListNode* middleNode(ListNode* head) { auto s = head; auto f = head; while (f and f -> next) { s = s -> next; f = f -> next -> next; } return s; } ```