Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Longest Consecutive Sequence #7

Open
cheatsheet1999 opened this issue Sep 5, 2021 · 0 comments
Open

Longest Consecutive Sequence #7

cheatsheet1999 opened this issue Sep 5, 2021 · 0 comments

Comments

@cheatsheet1999
Copy link
Owner

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: 4
Explanation: The longest consecutive elements sequence is [1, 2, 3, 4]. Therefore its length is 4.

Example 2:
Input: nums = [0,3,7,2,5,8,4,6,0,1]
Output: 9


/**
 * @param {number[]} nums
 * @return {number}
 */
var longestConsecutive = function(nums) {
    //First, we need a set that stores UNIQUE numbers
    let set = new Set(nums);
    //initialize the longest result to 0
    let longest = 0;
    for(let i of set) {
        //if this is not the start of consecutive sequence, skip this iteration
        if(set.has(nums[i] - 1)) continue;
        let length = 1;
        let curr = nums[i];
        //if we have a sequence, increase the length
        while(set.has(curr + 1)) {
            curr++;
            length++;
        }
        //if this is longest consecutive sequence
        longest = Math.max(length, longest);
    }
    return longest;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant