540. Single Element in a Sorted Array

Problem You are given a sorted array consisting of only integers where every element appears exactly twice, except for one el...

medium

3. Longest Substring Without Repeating Characters

Problem Given a string s, find the length of the longest substring without repeating characters. A substring is a contiguous...

medium

128. Longest Consecutive Sequence

Problem Given an unsorted array of integers nums, return the length of the longest consecutive elements sequence. You must wr...

medium
12