QuickCode 75

A companion app for Grind 75 to quickly check your understanding of time and space complexity. Originally created by JSer.

What are your best approaches regarding time complexity?

Questions tried: 0 / Passed at first try: 0

1. Two Sum

Given an integer array, find the pair that sum to target number.

N - length of array

Time
Space

2. Valid Parentheses

Given an string which might contain parentheses & brackets like '()abc{]}123', check if their pairings are valid.

N - length of string

Time
Space

3. Merge Two Sorted Linked Lists

Per title.

N - length of linked list

Time
Space

4. Two Sum

Given an integer array, find the pair that sum to target number.

N - length of array

Time
Space

Join BFE Premium to see the full list of 75 questions.