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... 2025-02-11 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... 2025-02-11 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... 2025-02-10 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]... 2025-02-09 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... 2025-02-09 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... 2025-02-09 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... 2025-02-08 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... 2025-02-08 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... 2025-02-07 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... 2025-02-07 easy
47. Permutations II Problem Given a collection of numbers, nums, that might contain duplicates, return all possible unique permutations in a... 2025-02-06 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... 2025-02-06 medium
46. Permutations Problem Given an array nums of distinct integers, return all the possible permutations. You can return the answer in any orde... 2025-02-06 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 ... 2025-02-05 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... 2025-02-05 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... 2025-02-05 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... 2025-02-04 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... 2025-02-04 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... 2025-02-04 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... 2025-02-03 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... 2025-02-03 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... 2025-02-02 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... 2025-02-02 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... 2025-02-01 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... 2025-01-31 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 ... 2025-01-31 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... 2025-01-31 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... 2025-01-30 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... 2025-01-30 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... 2025-01-29 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... 2025-01-28 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... 2025-01-28 medium