Skip to content

Latest commit

 

History

History
33 lines (19 loc) · 826 Bytes

0354-russian-doll-envelopes.adoc

File metadata and controls

33 lines (19 loc) · 826 Bytes

354. Russian Doll Envelopes

{leetcode}/problems/russian-doll-envelopes/[LeetCode - Russian Doll Envelopes^]

You have a number of envelopes with widths and heights given as a pair of integers (w, h). One envelope can fit into another if and only if both the width and height of one envelope is greater than the width and height of the other envelope.

What is the maximum number of envelopes can you Russian doll? (put one inside other)

Note:

Rotation is not allowed.

Example:

Input: [[5,4],[6,4],[6,7],[2,3]]
Output: 3
*Explanation: T*he maximum number of envelopes you can Russian doll is 3 ([2,3] => [5,4] => [6,7]).
link:{sourcedir}/_0354_RussianDollEnvelopes.java[role=include]