Medium
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
Constraints:
0 <= nums.length <= 105-109 <= nums[i] <= 109To solve the “Longest Consecutive Sequence” problem in Swift with a Solution class, we’ll use a HashSet and a greedy approach. Below are the steps:
Create a Solution class: Define a class named Solution to encapsulate our solution methods.
Create a longestConsecutive method: This method takes an array nums as input and returns the length of the longest consecutive elements sequence.
Initialize a HashSet: Create a HashSet named numSet to store all the numbers in the array nums.
Iterate through the array: Add all the numbers from the array nums to the numSet.
nums again. For each number num in the array:
    num - 1 exists in the numSet. If it does not, num could be the start of a new sequence.num - 1 does not exist, start a new sequence from num. Increment currentNum by 1 and check if currentNum exists in the numSet. Keep incrementing currentNum until it does not exist in the numSet. Update the maximum length of the sequence accordingly.Here’s the Swift implementation:
class Solution {
    func longestConsecutive(_ nums: [Int]) -> Int {
        if nums.isEmpty {
            return 0
        }
        let sortedNums = nums.sorted()
        var maxLen = 1
        var currentLen = 1
        for i in 1..<sortedNums.count {
            if sortedNums[i] == sortedNums[i - 1] + 1 {
                currentLen += 1
            } else if sortedNums[i] != sortedNums[i - 1] {
                maxLen = max(maxLen, currentLen)
                currentLen = 1
            }
        }
        return max(maxLen, currentLen)
    }
}
This implementation follows the steps outlined above and efficiently calculates the length of the longest consecutive elements sequence in Swift.