Longest Consecutive Sequence (#128)

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.

Company Tags: Amazon, Google

Core Concept: Array, Hashing

Solve on LeetCode