随笔分类 -  LeetCode

上一页 1 2 3 4 5 6 7 8 9 ··· 61 下一页
摘要:A storekeeper is a game in which the player pushes boxes around in a warehouse trying to get them to target locations. The game is represented by an m 阅读全文
posted @ 2021-12-05 15:39 Grandyang 阅读(620) 评论(0) 推荐(0) 编辑
摘要:Given an array nums of integers, we need to find the maximum possible sum of elements of the array such that it is divisible by three. Example 1: Inpu 阅读全文
posted @ 2021-12-01 14:42 Grandyang 阅读(704) 评论(0) 推荐(0) 编辑
摘要:Given a binary tree with the following rules: root.val == 0 If treeNode.val == x and treeNode.left != null, then treeNode.left.val == 2 * x + 1 If tre 阅读全文
posted @ 2021-11-27 14:07 Grandyang 阅读(332) 评论(0) 推荐(0) 编辑
摘要:Given a 2D grid of size m x n and an integer k. You need to shift the grid k times. In one shift operation: Element at grid[i][j] moves to grid[i][j + 阅读全文
posted @ 2021-11-23 23:58 Grandyang 阅读(1910) 评论(0) 推荐(0) 编辑
摘要:Given a list of words, list of single letters (might be repeating) and score of every character. Return the maximum score of any valid set of words fo 阅读全文
posted @ 2021-11-22 02:05 Grandyang 阅读(879) 评论(0) 推荐(0) 编辑
摘要:Given a 2D grid consists of 0s (land) and 1s (water). An island is a maximal 4-directionally connected group of 0s and a closed island is an island to 阅读全文
posted @ 2021-11-19 11:04 Grandyang 阅读(1045) 评论(0) 推荐(0) 编辑
摘要:Given the following details of a matrix with n columns and 2 rows : The matrix is a binary matrix, which means each element in the matrix can be 0 or  阅读全文
posted @ 2021-11-14 05:38 Grandyang 阅读(428) 评论(0) 推荐(0) 编辑
摘要:There is an m x n matrix that is initialized to all 0's. There is also a 2D array indices where each indices[i] = [ri, ci] represents a 0-indexed loca 阅读全文
posted @ 2021-11-10 11:55 Grandyang 阅读(529) 评论(0) 推荐(0) 编辑
摘要:Given an array nums of positive integers. Your task is to select some subset of nums, multiply each element by an integer and add all these numbers. T 阅读全文
posted @ 2021-11-08 12:33 Grandyang 阅读(438) 评论(0) 推荐(0) 编辑
摘要:Given a string s of '(' , ')' and lowercase English characters. Your task is to remove the minimum number of parentheses ( '(' or ')', in any position 阅读全文
posted @ 2021-11-06 09:29 Grandyang 阅读(1592) 评论(1) 推荐(0) 编辑
摘要:Given an array of integers nums and an integer k. A continuous subarray is called nice if there are k odd numbers on it. Return the number of nice sub 阅读全文
posted @ 2021-10-31 09:42 Grandyang 阅读(758) 评论(0) 推荐(0) 编辑
摘要:You are given two strings s1 and s2 of equal length consisting of letters "x" and "y" only. Your task is to make these two strings equal to each other 阅读全文
posted @ 2021-10-23 13:04 Grandyang 阅读(542) 评论(0) 推荐(0) 编辑
摘要:Given a rectangle of size n x m, return the minimum number of integer-sided squares that tile the rectangle. Example 1: Input: n = 2, m = 3 Output: 3 阅读全文
posted @ 2021-10-20 13:31 Grandyang 阅读(871) 评论(0) 推荐(0) 编辑
摘要:You are given an array of strings arr. A string s is formed by the concatenation of a subsequence of arr that has unique characters. Return the maximu 阅读全文
posted @ 2021-10-17 11:36 Grandyang 阅读(824) 评论(0) 推荐(0) 编辑
摘要:Given 2 integers n and start. Your task is return any permutation p of (0,1,2.....,2^n -1) such that : p[0] = start p[i] and p[i+1] differ by only one 阅读全文
posted @ 2021-10-14 10:18 Grandyang 阅读(306) 评论(0) 推荐(0) 编辑
摘要:Given a callable function f(x, y) with a hidden formula and a value z, reverse engineer the formula and return *all positive integer pairs x and y whe 阅读全文
posted @ 2021-10-12 12:28 Grandyang 阅读(355) 评论(0) 推荐(0) 编辑
摘要:We have n jobs, where every job is scheduled to be done from startTime[i] to endTime[i], obtaining a profit of profit[i]. You're given the startTime,  阅读全文
posted @ 2021-10-11 02:04 Grandyang 阅读(1637) 评论(0) 推荐(0) 编辑
摘要:You are given a string containing only 4 kinds of characters 'Q', 'W', 'E' and 'R'. A string is said to be balancedif each of its characters appears n 阅读全文
posted @ 2021-10-07 23:28 Grandyang 阅读(429) 评论(1) 推荐(0) 编辑
摘要:Given a list of folders folder, return the folders after removing all sub-folders in those folders. You may return the answer in any order. If a folde 阅读全文
posted @ 2021-10-06 11:46 Grandyang 阅读(324) 评论(0) 推荐(0) 编辑
摘要:You are given an array coordinates, coordinates[i] = [x, y], where [x, y] represents the coordinate of a point. Check if these points make a straight 阅读全文
posted @ 2021-10-03 07:23 Grandyang 阅读(537) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 ··· 61 下一页
Fork me on GitHub