Leetcode 0128. Longest Consecutive Sequence
Posted on Sun 29 December 2024 in Leetcode • Tagged with set
Question Link : https://leetcode.com/problems/longest-consecutive-sequence/
Difficulty: Medium
Premium: False
Question
Given an unsorted array of integers nums, return the length of the longest consecutive elements sequence. You must write an algorithm that runs in O(n) time. Example 1:
Input: nums = [100,4,200,1,3,2] Output …
Continue reading