
[LeetCode] 141. Linked List Cycle, Easy
·
CodingTest/LeetCode
1. 문제연결 리스트의 head가 주어질 때, 해당 리스트 내 사이클이 존재하는 지 true 또는 false를 반환하라.pos는 전달되지 않는 값이다.2. 해결/** * Definition for singly-linked list. * class ListNode { * val: number * next: ListNode | null * constructor(val?: number, next?: ListNode | null) { * this.val = (val===undefined ? 0 : val) * this.next = (next===undefined ? null : next) * } * } */function hasCycle(head: Lis..