3. Two pointers Flashcards

1
Q

What is the two-pointer technique?

A

This technique refers to using two pointers that start at opposite ends of an array and gradually move towards each other.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the time complexity of the naive approach to the Two Sum problem?

A

O(n^2)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the key to eliminating pairs in the two-pointer technique?

A

Understanding why we are able to eliminate pairs is key to understanding the two-pointer technique.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What does the two-pointer technique leverage to improve efficiency?

A

The fact that the input array is sorted.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

In the example of nums = [1, 3, 4, 6, 8, 10, 13] and target = 13, what is the first sum calculated?

A

14

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Why do we move the right pointer back when the sum is too large?

A

To get a smaller number, which might bring the sum closer to the target.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What do we do when the sum is too small?

A

Move the left pointer right to get a larger number, which might bring the sum closer to the target.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the time complexity reduction achieved by the two-pointer technique?

A

From O(n^2) down to O(n)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What do the two pointers represent in the two-pointer technique?

A

The pair of numbers we are currently considering.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What do we repeatedly compare in the two-pointer technique?

A

The sum of the current pair to the target.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

When should you consider using the two-pointer technique?

A

For questions that involve searching for a pair (or more) of items in an array that meet a certain criteria.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Fill in the blank: The two-pointer technique is useful for finding a pair of items that sum to a given _______.

A

[target]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Fill in the blank: The two-pointer technique can also be used to find a triplet of items that sum to _______ in a given array.

A

[0]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

True or False: The two-pointer technique can be applied to find the maximum amount of water that can be held between two array items representing wall heights.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly