随笔分类 -  LeetCode

上一页 1 ··· 41 42 43 44 45 46 47 48 49 ··· 61 下一页
摘要:Write a SQL query to rank scores. If there is a tie between two scores, both should have the same ranking. Note that after a tie, the next ranking num 阅读全文
posted @ 2016-04-04 11:20 Grandyang 阅读(14132) 评论(17) 推荐(0) 编辑
摘要:Given a string, find the length of the longest substring T that contains at most k distinct characters. Example 1: Input: s = "eceba", k = 2 Output: 3 阅读全文
posted @ 2016-04-04 08:22 Grandyang 阅读(26943) 评论(7) 推荐(2) 编辑
摘要:Write a SQL query to get the nth highest salary from the Employee table. For example, given the above Employee table, the nth highest salary where n = 阅读全文
posted @ 2016-04-03 05:43 Grandyang 阅读(10375) 评论(0) 推荐(1) 编辑
摘要:Write a SQL query to get the second highest salary from the Employee table. For example, given the above Employee table, the second highest salary is  阅读全文
posted @ 2016-04-03 05:00 Grandyang 阅读(11308) 评论(7) 推荐(1) 编辑
摘要:Table: Person Table: Address Write a SQL query for a report that provides the following information for each person in the Person table, regardless if 阅读全文
posted @ 2016-04-03 04:09 Grandyang 阅读(6307) 评论(0) 推荐(1) 编辑
摘要:Given a nested list of integers, return the sum of all integers in the list weighted by their depth. Each element is either an integer, or a list -- w 阅读全文
posted @ 2016-03-31 10:57 Grandyang 阅读(17404) 评论(1) 推荐(1) 编辑
摘要:Given an array nums and a target value k, find the maximum length of a subarray that sums to k. If there isn't one, return 0 instead. Note:The sum of 阅读全文
posted @ 2016-03-30 12:14 Grandyang 阅读(21209) 评论(8) 推荐(0) 编辑
摘要:Numbers can be regarded as product of its factors. For example, 8 = 2 x 2 x 2; = 2 x 4. Write a function that takes an integer n and return all possib 阅读全文
posted @ 2016-03-29 13:55 Grandyang 阅读(14335) 评论(5) 推荐(0) 编辑
摘要:Given an array of numbers, verify whether it is the correct preorder traversal sequence of a binary search tree. You may assume each number in the seq 阅读全文
posted @ 2016-03-28 05:55 Grandyang 阅读(12861) 评论(2) 推荐(0) 编辑
摘要:Given a pattern and a string str, find if strfollows the same pattern. Here follow means a full match, such that there is a bijection between a letter 阅读全文
posted @ 2016-03-27 15:14 Grandyang 阅读(12875) 评论(10) 推荐(1) 编辑
摘要:There are a row of n houses, each house can be painted with one of the k colors. The cost of painting each house with a certain color is different. Yo 阅读全文
posted @ 2016-03-26 14:26 Grandyang 阅读(16246) 评论(5) 推荐(0) 编辑
摘要:There are a row of n houses, each house can be painted with one of the three colors: red, blue or green. The cost of painting each house with a certai 阅读全文
posted @ 2016-03-25 14:30 Grandyang 阅读(18844) 评论(7) 推荐(0) 编辑
摘要:Given a string s, return all the palindromic permutations (without duplicates) of it. Return an empty list if no palindromic permutation could be form 阅读全文
posted @ 2016-03-24 13:51 Grandyang 阅读(12465) 评论(0) 推荐(0) 编辑
摘要:Suppose you are at a party with n people (labeled from 0 to n - 1) and among them, there may exist one celebrity. The definition of a celebrity is tha 阅读全文
posted @ 2016-03-23 13:00 Grandyang 阅读(21599) 评论(4) 推荐(1) 编辑
摘要:Given a binary search tree and a node in it, find the in-order successor of that node in the BST. The successor of a node p is the node with the small 阅读全文
posted @ 2016-03-22 13:49 Grandyang 阅读(20295) 评论(9) 推荐(0) 编辑
摘要:Given a 2D matrix matrix, find the sum of the elements inside the rectangle defined by its upper left corner (row1, col1) and lower right corner (row2 阅读全文
posted @ 2016-03-21 03:36 Grandyang 阅读(18554) 评论(2) 推荐(0) 编辑
摘要:You want to build a house on an empty land which reaches all buildings in the shortest amount of distance. You can only move up, down, left and right. 阅读全文
posted @ 2016-03-20 14:14 Grandyang 阅读(23157) 评论(10) 推荐(0) 编辑
摘要:Given a non negative integer number num. For every numbers i in the range 0 ≤ i ≤ num calculate the number of 1's in their binary representation and r 阅读全文
posted @ 2016-03-19 07:05 Grandyang 阅读(21329) 评论(4) 推荐(1) 编辑
摘要:A group of two or more people wants to meet and minimize the total travel distance. You are given a 2D grid of values 0 or 1, where each 1 marks the h 阅读全文
posted @ 2016-03-18 10:28 Grandyang 阅读(17063) 评论(3) 推荐(0) 编辑
摘要:You are given a m x n 2D grid initialized with these three possible values. Fill each empty room with the distance to its nearest gate. If it is impos 阅读全文
posted @ 2016-03-17 01:03 Grandyang 阅读(22986) 评论(7) 推荐(1) 编辑

上一页 1 ··· 41 42 43 44 45 46 47 48 49 ··· 61 下一页
Fork me on GitHub