1728. Cat and Mouse II

Problem A game is played by a cat and a mouse named Cat and Mouse. The environment is represented by a grid of size rows x co...

hard

1910. Remove All Occurrences of a Substring

Problem Given two strings s and part, perform the following operation on s until all occurrences of the substring part are re...

medium

3174. Clear Digits

Problem You are given a string s. Your task is to remove all digits by doing this operation repeatedly: Delete the first dig...

easy

2364. Count Number of Bad Pairs

Problem You are given a 0-indexed integer array nums. A pair of indices (i, j) is a bad pair if i < j and j - i != nums[j]...

medium

80. Remove Duplicates from Sorted Array II

Problem Given an integer array nums sorted in non-decreasing order, remove some duplicates in-place such that each unique ele...

medium

26. Remove Duplicates from Sorted Array

Problem Given an integer array nums sorted in non-decreasing order, remove the duplicates in-place such that each unique elem...

easy

2349. Design a Number Container System

Problem Design a number container system that can do the following: Insert or Replace a number at the given index in the sys...

medium

63. Unique Paths II

Problem You are given an m x n integer array grid. There is a robot initially located at the top-left corner (i.e., grid[0][0...

medium

3160. Find the Number of Distinct Colors Among the Balls

Problem You are given an integer limit and a 2D array queries of size n x 2. There are limit + 1 balls with distinct labels i...

medium

59. Spiral Matrix II

Problem Given a positive integer n, generate an n x n matrix filled with elements from 1 to n² in spiral order. https://leetc...

easy

47. Permutations II

Problem Given a collection of numbers, nums, that might contain duplicates, return all possible unique permutations in any or...

easy

1726. Tuple with Same Product

Problem Given an array nums of distinct positive integers, return the number of tuples (a, b, c, d) such that a * b = c * d w...

medium

46. Permutations

Problem Given an array nums of distinct integers, return all the possible permutations. You can return the answer in any orde...

easy

1790. Check if One String Swap Can Make Strings Equal

Problem You are given two strings s1 and s2 of equal length. A string swap is an operation where you choose two indices in a ...

easy

90. Subsets II

Problem Given an integer array nums that may contain duplicates, return all possible subsets (the power set). A subset of an...

easy

78. Subsets

Problem Given an integer array nums of unique elements, return all possible subsets (the power set). A subset of an array is...

easy

1800. Maximum Ascending Subarray Sum

Problem Given an array of positive integers nums, return the maximum possible sum of an ascending subarray in nums. A subarra...

easy

922. Sort Array By Parity II

Problem Given an array of integers nums, half of the integers in nums are odd, and the other half are even. Sort the array so...

easy

905. Sort Array By Parity

Problem Given an integer array nums, move all the even integers at the beginning of the array followed by all the odd integer...

easy

3105. Longest Strictly Increasing or Strictly Decreasing Subarray

Problem You are given an array of integers nums. Return the length of the longest subarray of nums which is either strictly i...

easy

680. Valid Palindrome II

Problem Given a string s, return true if the s can be palindrome after deleting at most one character from it. https://leetco...

easy

1752. Check if Array Is Sorted and Rotated

Problem Given an array nums, return true if the array was originally sorted in non-decreasing order, then rotated some number...

easy

598. Range Addition II

Problem You are given an m x n matrix M initialized with all 0’s and an array of operations ops, where ops[i] = [aᵢ, bᵢ] mean...

easy

81. Search in Rotated Sorted Array II

Problem There is an integer array nums sorted in non-decreasing order (not necessarily with distinct values). Before being pa...

medium

827. Making A Large Island

Problem You are given an n x n binary matrix grid. You are allowed to change at most one 0 to be 1. Return the size of the la...

hard

541. Reverse String II

Problem Given a string s and an integer k, reverse the first k characters for every 2k characters counting from the start of ...

easy

344. Reverse String

Problem Write a function that reverses a string. The input string is given as an array of characters s. You must do this by m...

easy

350. Intersection of Two Arrays II

Problem Given two integer arrays nums1 and nums2, return an array of their intersection. Each element in the result must appe...

easy

349. Intersection of Two Arrays

Problem Given two integer arrays nums1 and nums2, return an array of their intersection. Each element in the result must be u...

easy

219. Contains Duplicate II

Problem Given an integer array nums and an integer k, return true if there are two distinct indices i and j in the array such...

easy

118. Pascal’s Triangle

Problem Given an integer numRows, return the first numRows of Pascal’s triangle. In Pascal’s triangle, each number is the sum...

easy

2658. Maximum Number of Fish in a Grid

Problem You are given a 0-indexed 2D matrix grid of size m x n, where (r, c) represents: A land cell if grid[r][c] = 0, or A...

medium
123412