上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 44 下一页
摘要: A sorted list A contains 1, plus some number of primes. Then, for every p < q in the list, we consider the fraction p/q. What is the K-th smallest fra 阅读全文
posted @ 2018-06-04 19:59 Grandyang 阅读(4735) 评论(3) 推荐(0) 编辑
摘要: There are n cities connected by m flights. Each fight starts from city u and arrives at v with a price w. Now given all the cities and fights, togethe 阅读全文
posted @ 2018-05-30 11:31 Grandyang 阅读(12250) 评论(4) 推荐(0) 编辑
摘要: Given a string S, we can transform every letter individually to be lowercase or uppercase to create another string. Return a list of all possible stri 阅读全文
posted @ 2018-05-21 09:21 Grandyang 阅读(6128) 评论(2) 推荐(1) 编辑
摘要: Given a Binary Search Tree (BST) with the root node root, return the minimum difference between the values of any two different nodes in the tree. Exa 阅读全文
posted @ 2018-05-19 23:46 Grandyang 阅读(4748) 评论(1) 推荐(0) 编辑
摘要: An N x N board contains only 0s and 1s. In each move, you can swap any 2 rows with each other, or any 2 columns with each other. What is the minimum n 阅读全文
posted @ 2018-05-17 22:32 Grandyang 阅读(5099) 评论(0) 推荐(1) 编辑
摘要: In a forest, each rabbit has some color. Some subset of rabbits (possibly all of them) tell you how many other rabbits have the same color as them. Th 阅读全文
posted @ 2018-05-15 23:39 Grandyang 阅读(4239) 评论(1) 推荐(1) 编辑
摘要: A move consists of taking a point (x, y) and transforming it to either (x, x+y) or (x+y, y). Given a starting point (sx, sy) and a target point (tx, t 阅读全文
posted @ 2018-05-13 23:22 Grandyang 阅读(5458) 评论(3) 推荐(0) 编辑
摘要: On the first row, we write a 0. Now in every subsequent row, we look at the previous row and replace each occurrence of 0 with 01, and each occurrence 阅读全文
posted @ 2018-05-11 23:55 Grandyang 阅读(5009) 评论(0) 推荐(0) 编辑
摘要: On an N x N grid, each square grid[i][j] represents the elevation at that point (i,j). Now rain starts to fall. At time t, the depth of the water ever 阅读全文
posted @ 2018-05-09 23:26 Grandyang 阅读(5870) 评论(2) 推荐(1) 编辑
摘要: In a string composed of 'L', 'R', and 'X' characters, like "RXXLRXRXL", a move consists of either replacing one occurrence of "XL" with "LX", or repla 阅读全文
posted @ 2018-05-07 10:54 Grandyang 阅读(5764) 评论(4) 推荐(0) 编辑
摘要: Given a Binary Search Tree (BST) with root node root, and a target value V, split the tree into two subtrees where one subtree has nodes that are all 阅读全文
posted @ 2018-05-04 23:40 Grandyang 阅读(5975) 评论(2) 推荐(0) 编辑
摘要: We have some permutation A of [0, 1, ..., N - 1], where N is the length of A. The number of (global) inversions is the number of i < j with 0 <= i < j 阅读全文
posted @ 2018-05-02 23:07 Grandyang 阅读(3297) 评论(4) 推荐(1) 编辑
摘要: On a horizontal number line, we have gas stations at positions stations[0], stations[1], ..., stations[N-1], where N = stations.length. Now, we add K  阅读全文
posted @ 2018-04-28 23:59 Grandyang 阅读(7114) 评论(6) 推荐(1) 编辑
摘要: On an 2 x 3 board, there are five tiles labeled from 1 to 5, and an empty square represented by 0. A move consists of choosing 0 and a 4-directionally 阅读全文
posted @ 2018-04-26 23:31 Grandyang 阅读(7856) 评论(2) 推荐(0) 编辑
摘要: Given an expression such as expression = "e + 8 - a + 5" and an evaluation map such as {"e": 1} (given in terms of evalvars = ["e"] and evalints = [1] 阅读全文
posted @ 2018-04-24 23:22 Grandyang 阅读(5788) 评论(3) 推荐(0) 编辑
摘要: You're given strings J representing the types of stones that are jewels, and S representing the stones you have. Each character in Sis a type of stone 阅读全文
posted @ 2018-04-22 23:37 Grandyang 阅读(4585) 评论(0) 推荐(0) 编辑
摘要: 话说博主在写 Max Chunks To Make Sorted II 这篇帖子的解法四时,写到使用单调栈Monotone Stack的解法时,突然脑中触电一般,想起了之前曾经在此贴 LeetCode All in One 题目讲解汇总(持续更新中...) 的留言区中说要写单调栈的总结帖,当时答应了 阅读全文
posted @ 2018-04-20 07:31 Grandyang 阅读(40382) 评论(12) 推荐(2) 编辑
摘要: Implement a basic calculator to evaluate a simple expression string. The expression string may contain open ( and closing parentheses ), the plus + or 阅读全文
posted @ 2018-04-18 11:58 Grandyang 阅读(26662) 评论(11) 推荐(1) 编辑
摘要: This question is the same as "Max Chunks to Make Sorted" except the integers of the given array are not necessarily distinct, the input array could be 阅读全文
posted @ 2018-04-15 23:51 Grandyang 阅读(7236) 评论(2) 推荐(1) 编辑
摘要: Given an array arr that is a permutation of [0, 1, ..., arr.length - 1], we split the array into some number of "chunks" (partitions), and individuall 阅读全文
posted @ 2018-04-13 21:05 Grandyang 阅读(5330) 评论(1) 推荐(0) 编辑
摘要: Given a string S, check if the letters can be rearranged so that two characters that are adjacent to each other are not the same. If possible, output 阅读全文
posted @ 2018-04-11 23:40 Grandyang 阅读(12038) 评论(7) 推荐(0) 编辑
摘要: Given an array of characters, compress it in-place. The length after compression must always be smaller than or equal to the original array. Every ele 阅读全文
posted @ 2018-04-08 05:38 Grandyang 阅读(11393) 评论(0) 推荐(1) 编辑
摘要: A matrix is Toeplitz if every diagonal from top-left to bottom-right has the same element. Now given an M x N matrix, return True if and only if the m 阅读全文
posted @ 2018-04-06 23:42 Grandyang 阅读(7437) 评论(0) 推荐(0) 编辑
摘要: N couples sit in 2N seats arranged in a row and want to hold hands. We want to know the minimum number of swaps so that every couple is sitting side b 阅读全文
posted @ 2018-04-04 12:31 Grandyang 阅读(6682) 评论(5) 推荐(2) 编辑
摘要: 在iOS开发中,按钮图标可以放三种大小,常见的是22x22,44x44,66x66,一般来说我们可以在PS中做好图片后,再分别导出三种大小的图标,但是每次要修改图片的大小,操作比较繁琐。这里博主推荐一种使用命令行来快速对图片的大小进行转换,比如我们用PS做好了图以后,先导出66x66大小的图片,命名 阅读全文
posted @ 2018-04-01 06:16 Grandyang 阅读(1179) 评论(0) 推荐(0) 编辑
摘要: Given strings S and T, find the minimum (contiguous) substring W of S, so that T is a subsequence of W. If there is no such window in S that covers al 阅读全文
posted @ 2018-03-31 23:54 Grandyang 阅读(15101) 评论(6) 推荐(1) 编辑
摘要: In a 2D grid from (0, 0) to (N-1, N-1), every cell contains a 1, except those cells in the given list mines which are 0. What is the largest axis-alig 阅读全文
posted @ 2018-03-30 23:28 Grandyang 阅读(4637) 评论(0) 推荐(0) 编辑
摘要: Given a chemical formula (given as a string), return the count of each atom. The atomic element always starts with an uppercase character, then zero o 阅读全文
posted @ 2018-03-28 23:44 Grandyang 阅读(5210) 评论(3) 推荐(0) 编辑
摘要: A string S of lowercase letters is given. We want to partition this string into as many parts as possible so that each letter appears in at most one p 阅读全文
posted @ 2018-03-26 23:25 Grandyang 阅读(12211) 评论(1) 推荐(0) 编辑
摘要: Given two integers L and R, find the count of numbers in the range [L, R] (inclusive) having a prime number of set bits in their binary representation 阅读全文
posted @ 2018-03-24 23:55 Grandyang 阅读(4177) 评论(0) 推荐(1) 编辑
摘要: Given an integer array, return the k-th smallest distance among all the pairs. The distance of a pair (A, B) is defined as the absolute difference bet 阅读全文
posted @ 2018-03-22 23:48 Grandyang 阅读(8452) 评论(6) 推荐(0) 编辑
摘要: Github中单个文件的大小限制是100MB,为了能突破这个限制,我们需要使用Git Large File Storage这个工具,参见这个官方帖子,但是按照其给的步骤,博主未能成功上传超大文件,那么这里就给出自己成功的步骤吧: 阅读全文
posted @ 2018-03-20 07:06 Grandyang 阅读(2718) 评论(0) 推荐(0) 编辑
摘要: Special binary strings are binary strings with the following two properties: The number of 0's is equal to the number of 1's. Every prefix of the bina 阅读全文
posted @ 2018-03-19 23:56 Grandyang 阅读(6323) 评论(2) 推荐(1) 编辑
摘要: A Range Module is a module that tracks ranges of numbers. Your task is to design and implement the following interfaces in an efficient manner. addRan 阅读全文
posted @ 2018-03-16 23:53 Grandyang 阅读(5779) 评论(0) 推荐(0) 编辑
摘要: Given two lists A and B, and B is an anagram of A. B is an anagram of A means B is made by randomizing the order of the elements in A. We want to find 阅读全文
posted @ 2018-03-14 23:53 Grandyang 阅读(4230) 评论(0) 推荐(0) 编辑
摘要: We are given a list schedule of employees, which represents the working time for each employee. Each employee has a list of non-overlapping Intervals, 阅读全文
posted @ 2018-03-12 22:49 Grandyang 阅读(8950) 评论(0) 推荐(0) 编辑
摘要: Given a non-empty 2D array grid of 0's and 1's, an island is a group of 1's (representing land) connected 4-directionally (horizontal or vertical.) Yo 阅读全文
posted @ 2018-03-10 23:55 Grandyang 阅读(7167) 评论(4) 推荐(1) 编辑
摘要: Given a set of keywords words and a string S, make all appearances of all keywords in S bold. Any letters between <b> and </b> tags become bold. The r 阅读全文
posted @ 2018-03-08 23:54 Grandyang 阅读(5944) 评论(0) 推荐(0) 编辑
摘要: Given an undirected graph, return true if and only if it is bipartite. Recall that a graph is bipartite if we can split it's set of nodes into two ind 阅读全文
posted @ 2018-03-06 22:26 Grandyang 阅读(12971) 评论(4) 推荐(1) 编辑
摘要: An integer interval [a, b] (for integers a < b) is a set of all consecutive integers from a to b, including a and b. Find the minimum size of a set S 阅读全文
posted @ 2018-03-03 23:20 Grandyang 阅读(4183) 评论(0) 推荐(2) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 44 下一页
Fork me on GitHub