linkedlistcycle

    [LeetCode] Linked List Cycle (Java)

    ✉️문제 https://leetcode.com/problems/linked-list-cycle/description/ Linked List Cycle - LeetCode Can you solve this real interview question? Linked List Cycle - Given head, the head of a linked list, determine if the linked list has a cycle in it. There is a cycle in a linked list if there is some node in the list that can be reached again by continuo leetcode.com 📝 접근 방문한 노드에 방문했다는 표시를 한다. (이 문제에..