Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 706 Bytes

File metadata and controls

25 lines (19 loc) · 706 Bytes

순환 검출

  • Page 189

Brute-force

해시테이블

Two pointer

>>> def hasCycle(self, head: Node) -> bool:
    ...
  • 오기: 함수 호출 인자에 self를 제외해줘야 합니다.

LeetCode

GeeksForGeeks: 조금 확장된 문제, 순환(cycle)을 찾으면 해당 연결을 끊는 문제

Hackerrank