All Posts

Leetcode 300: Longest Increasing Subsequence

Given an integer array ’nums’, find the length of the longest strictly increasing subsequence. A subsequence is a sequence derived by deleting some elements without changing the order of the remaining elements.

Leetcode 349: Intersection of Two Arrays

Given two integer arrays nums1 and nums2, return an array of their intersection. Each element in the result must be unique, and you may return the result in any order.

Leetcode 378: Kth Smallest Element in a Sorted Matrix

Given an n x n matrix where each row and column is sorted in ascending order, find the kth smallest element in the matrix. The matrix is sorted in both rows and columns, but the kth smallest element is the one in the sorted order, not necessarily distinct.

Leetcode 400: Nth Digit

You are given a positive integer n. Your task is to find the nth digit in an infinite sequence of consecutive integers starting from 1. The sequence starts as [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, …].

Leetcode 436: Find Right Interval

You are given an array of intervals, where each interval is represented by a pair of integers [start, end], and the start value is unique. For each interval, find the right interval. The right interval for an interval i is an interval j such that start[j] >= end[i] and the start[j] is minimized. If no right interval exists, return -1.

Leetcode 456: 132 Pattern

Given an array of integers, determine if there exists a subsequence of three integers nums[i], nums[j], nums[k] where i < j < k and nums[i] < nums[k] < nums[j]. Return true if such a subsequence exists, otherwise return false.