Problem Solvings & Algorithm/LeetCode2 [LeetCode] #141 Linked List Cycle - Swift 풀이 노션에서 보기 0141 Linked List Cycle LeetCode 141번 Linked List Cycle 문제풀이 www.notion.so 문제 (자세한 워딩은 생략) 요약하자면 Singly Linked로 구성된 List에서 tail이 list 어디론가 다시 연결되는 cycle이 발견되는 경우 true를, 순환 없이 끝나면 false를 리턴하라는 문제이다. 그리고 이제부터 답을 향한 대 서사시를 시작해보도록 하겠다😩 는.. 그 전에 풀이 혹시나 답만 필요한 구글러가 있을 지 모르므로 답 코드 먼저 공개하며 시작. func hasCycle(_ head: ListNode?) -> Bool { if head == nil { return false } var slow = head var fast = he.. 2021. 1. 13. [LeetCode] #1 Two Sum - Swift 풀이 노션에서 보기 0001 Two Sum LeetCode 1번 Two Sum 문제풀이 www.notion.so 문제 Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not use the same element twice. You can return the answer in any order. (예시 생략) 요약하자면 합해서 target이 되는 nums Array의 두 수를 찾고, 그 수들의 index를 찾아.. 2021. 1. 13. 이전 1 다음