DIY: Longest Consecutive Sequence
Explore how to solve the longest consecutive sequence problem by implementing a function to identify the longest run of consecutive integers in an unsorted array. Understand this core algorithmic challenge and prepare for similar coding interview tasks using JavaScript.
We'll cover the following...
We'll cover the following...
Problem statement
Given an unsorted array of integers, find the length of the longest consecutive elements sequence.
Input
The input will be an array of ...