Google 태그 관리자 아이콘
반응형

전체 글 177

.leetcode(876. Middle of the Linked List)

https://leetcode.com/problems/middle-of-the-linked-list/ 1. 2022.01.24 시도 소요시간: 4분 class Solution { public ListNode middleNode(ListNode head) { if (head == null) { return null; } ListNode slow = head; ListNode fast = head.next; while(fast != null && fast.next != null) { slow = slow.next; fast = fast.next.next; } if (fast == null) { return slow; } return slow.next; } } 풀이 접근 과정 slow, fast로 하면 쉽게 ..

알고리즘 풀이 2022.01.24
반응형