GDSC-MITS / Contribute-To-HacktoberFest

Link Tree for all our socials
https://linktr.ee/gdscmits
14 stars 41 forks source link

Create longest_consecutive_sequence.cpp #89

Closed Udyan31 closed 1 year ago

Udyan31 commented 1 year ago

Leetcode Question Link: https://leetcode.com/problems/longest-consecutive-sequence/

C++ program to find the length of the longest consecutive elements sequence.

Example: 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.