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

Proposal: Add New Exercise – "Find the Longest Consecutive Sequence" #530

Open
ChuqiaoHuang opened this issue Mar 13, 2025 · 0 comments
Open

Comments

@ChuqiaoHuang
Copy link

Description:
This exercise challenges users to implement a function that finds the longest consecutive sequence of numbers in an unsorted array. The sequence must consist of numbers that appear consecutively when sorted (but the array itself is not necessarily sorted).
The function should return the length of the longest consecutive sequence.

Why Add This?

  • Reinforces array iteration and sorting techniques.
  • Teaches how to use sets for efficient lookups.
  • Encourages students to think about optimizing performance beyond brute-force solutions.

Test Cases:
longestConsecutive([100, 4, 200, 1, 3, 2]); // ➞ 4 (sequence: [1, 2, 3, 4])
longestConsecutive([9, 1, 4, 7, 3, 2, 5, 6, 0]); // ➞ 6 (sequence: [0, 1, 2, 3, 4, 5])
longestConsecutive([1, 2, 3, 4, 5]); // ➞ 5 (sequence: [1, 2, 3, 4, 5])
longestConsecutive([10, 5, 12, 3, 55, 30]); // ➞ 1 (no consecutive sequence)
longestConsecutive([]); // ➞ 0 (empty array)

If available, I would like to be assigned.

@ChuqiaoHuang ChuqiaoHuang changed the title Proposal: Add New Exercise – Find the Longest Consecutive Sequence Proposal: Add New Exercise – "Find the Longest Consecutive Sequence" Mar 13, 2025
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