随笔分类 -  LeetCode

上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 61 下一页
摘要:We write the integers of and (in the order they are given) on two separate horizontal lines. Now, we may draw connecting lines : a straight line conne 阅读全文
posted @ 2021-02-19 13:53 Grandyang 阅读(740) 评论(0) 推荐(0) 编辑
摘要:Given a 2 dimensional of integers, each value in the grid represents the color of the grid square at that location. Two squares belong to the same con 阅读全文
posted @ 2021-02-18 14:38 Grandyang 阅读(562) 评论(1) 推荐(0) 编辑
摘要:Three stones are on a number line at positions , , and . Each turn, you pick up a stone at an endpoint (ie., either the lowest or highest position sto 阅读全文
posted @ 2021-02-17 15:05 Grandyang 阅读(414) 评论(0) 推荐(0) 编辑
摘要:Implement the class as follows: : Constructor, init the data structure with the given words. : returns true if and only if for some , the last charact 阅读全文
posted @ 2021-02-16 13:27 Grandyang 阅读(745) 评论(0) 推荐(1) 编辑
摘要:Given an array of non negative integers, return the maximum sum of elements in two non overlapping (contiguous) subarrays, which have lengths and . (F 阅读全文
posted @ 2021-02-15 14:45 Grandyang 阅读(916) 评论(0) 推荐(0) 编辑
摘要:We are given a matrix with rows and columns has cells with integer coordinates , where `0 这道题给了一个R行C列的矩阵,又给了一个起始点 (r0, c0),让按照离起始点的曼哈顿距离从小到大排序坐标点。博主最先 阅读全文
posted @ 2021-02-14 13:41 Grandyang 阅读(943) 评论(0) 推荐(0) 编辑
摘要:A company is planning to interview people. Given the array where , the cost of flying the person to city is , and the cost of flying the person to cit 阅读全文
posted @ 2021-02-14 10:01 Grandyang 阅读(1087) 评论(0) 推荐(1) 编辑
摘要:Given an array of integers, return the length of the longest arithmetic subsequence in . Recall that a subsequence of is a list with `0 这道题给了一个数组,让找最长 阅读全文
posted @ 2021-02-13 11:10 Grandyang 阅读(1533) 评论(1) 推荐(0) 编辑
摘要:Given the of a binary tree, find the maximum value for which there exist different nodes and where and is an ancestor of . A node is an ancestor of if 阅读全文
posted @ 2021-02-12 12:16 Grandyang 阅读(759) 评论(0) 推荐(0) 编辑
摘要:Alice and Bob take turns playing a game, with Alice starting first. Initially, there is a number on the chalkboard. On each player's turn, that player 阅读全文
posted @ 2021-02-11 14:31 Grandyang 阅读(1009) 评论(0) 推荐(0) 编辑
摘要:You are given a series of video clips from a sporting event that lasted T seconds. These video clips can be overlapping with each other and have varie 阅读全文
posted @ 2021-02-10 14:44 Grandyang 阅读(2147) 评论(2) 推荐(0) 编辑
摘要:A query word matches a given if we can insert lowercase letters to the pattern word so that it equals the . (We may insert each character at any posit 阅读全文
posted @ 2021-02-09 13:52 Grandyang 阅读(619) 评论(0) 推荐(0) 编辑
摘要:You are given the of a binary tree where each node has a value or . Each root to leaf path represents a binary number starting with the most significa 阅读全文
posted @ 2021-02-08 12:39 Grandyang 阅读(581) 评论(0) 推荐(0) 编辑
摘要:A valid parentheses string is either empty , , or , where and are valid parentheses strings, and represents string concatenation. For example, , , , a 阅读全文
posted @ 2021-02-08 02:19 Grandyang 阅读(724) 评论(0) 推荐(0) 编辑
摘要:Given a 2D array , each cell is 0 (representing sea) or 1 (representing land) A move consists of walking from one land square 4 directionally to anoth 阅读全文
posted @ 2021-02-07 15:19 Grandyang 阅读(639) 评论(0) 推荐(0) 编辑
摘要:We are given a linked list with as the first node. Let's number the nodes in the list: etc. Each node may have a next larger value: for , is the such 阅读全文
posted @ 2021-02-07 03:53 Grandyang 阅读(636) 评论(0) 推荐(0) 编辑
摘要:Given an array of s and s, consider : the i th subarray from to interpreted as a binary number (from most significant bit to least significant bit.) R 阅读全文
posted @ 2021-02-06 12:59 Grandyang 阅读(384) 评论(0) 推荐(0) 编辑
摘要:Given a number , return a string consisting of s and s that represents its value in base (negative two). The returned string must have no leading zero 阅读全文
posted @ 2021-02-05 14:25 Grandyang 阅读(618) 评论(1) 推荐(0) 编辑
摘要:Given a binary string (a string consisting only of '0' and '1's) and a positive integer , return true if and only if for every integer X from 1 to N, 阅读全文
posted @ 2021-02-04 14:08 Grandyang 阅读(402) 评论(1) 推荐(0) 编辑
摘要:Given a positive integer , you need to find the length of the smallest positive integer such that is divisible by , and only contains the digit . Retu 阅读全文
posted @ 2021-02-03 16:48 Grandyang 阅读(592) 评论(3) 推荐(0) 编辑

上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 61 下一页
Fork me on GitHub