Showing 3 of 425 questions
Determine the total number of continuous subarrays within a given array that sum up to a specific target value, k.
#1. Subarray Sum Equals K
Find the length of the longest substring within a given string that contains no repeating characters. The substring must be contiguous.
#2. Longest Substring Without Repeating Characters
Given a number 'n', generate all possible well-formed (balanced) parentheses strings of length 2*n. For instance, if n=3, you need to create all valid combinations like '((()))', '(()())', etc.
#3. Generate Parentheses