We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efa70e7 commit 6cbf6b0Copy full SHA for 6cbf6b0
longest-consecutive-sequence/devyulbae.py
@@ -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