Logo
Grokking the Coding Interview: Patterns for Coding Questions
Ask Author
Back to course home

0% completed

132 Pattern (medium)

Problem Statement

Given an array nums, containing N integers.

A 132 pattern consists of three numbers, say x, y, and z, where x < z and z < y. This is often referred to as a '132' pattern because if we represent x, y, and z as 1, 3, and 2, respectively, it mimics the positional pattern in '132'.

Return true if such a pattern exists within a given sequence of numbers. Otherwise, return false.

Examples

  1. Example 1:
    • Input: nums = [3, 5, 0, 3, 4]
    • Expected Output: True

.....

.....

.....

Like the course? Get enrolled and start learning!