Skip to content

Commit 6cbf6b0

Browse files
committed
4 solved
1 parent efa70e7 commit 6cbf6b0

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
"""
2+
Blind75 - Longest Consecutive Sequence
3+
https://leetcode.com/problems/longest-consecutive-sequence/
4+
5+
조건 : O(n) 시간복잡도
6+
"""
7+
8+
9+
class Solution:
10+
def longestConsecutive(self, nums: List[int]) -> int:
11+

0 commit comments

Comments
 (0)