Bitwise AND of Numbers Range Given a range [m, n] where 0 <= m <= n <= 2147483647, return the bitwise…
分类:LeetCode
[Leetcode] First Bad Version 第一个错误版本
First Bad Version You are a product manager and currently leading a team to develop a new product. Unfortunate…
[Leetcode] Number of 1 Bits 一的位数
Number of 1 Bits Write a function that takes an unsigned integer and returns the number of ’1′ bits it h…
LeetCode中级算法题目总结
原文欢迎关注http://blackblog.tech/2018/06/03/LeetCodeReview/ 欢迎关注我的个人博客 http://blackblog.tech 这是一篇笔记型Blog,主要存一下最近练的代…
矩阵中的路径
题目描述 请设计一个函数,用来判断在一个矩阵中是否存在一条包含某字符串所有字符的路径。路径可以从矩阵中的任意一个格子开始,每一步可以在矩阵中向左,向右,向上,向下移动一个格子。如果一条路径经过了矩阵中的某一个格子,则该路…
[LintCode][System Design] Tiny Url
Problem More Discussions Given a long url, make it shorter. To make it simpler, let’s ignore the domain …
Leetcode PHP题解--D34 977. Squares of a Sorted Array
977. Squares of a Sorted Array 题目链接 977. Squares of a Sorted Array 题目分析 本题比较简单。对给定数组的每一个数字的平方。并对结果进行排序。 思路 遍历每…
62. 不同路径
class Solution(object): def minPathSum(self, grid): """ :type grid: List[List[int]] :rtype: int """ # 注意初始化 # …
[LeetCode] Count Numbers with Unique Digits 计算各位不相同的数字个数
Given a non-negative integer n, count all numbers with unique digits, x, where 0 ≤ x < 10n. Example:…
[LeetCode] Poor Pigs 可怜的猪
There are 1000 buckets, one and only one of them contains poison, the rest are filled with water. They …
LeetCode之Design题目汇总
Implement Queue using Stacks Implement the following operations of a queue using stacks. push(x) – Push elemen…
初级算法:颠倒整数
给定一个范围为 32 位 int 的整数,将其颠倒。 例 1: 输入: 123 输出: 321 例 2: 输入: -123 输出: -321 例 3: 输入: 120 输出: 21 注意: 假设我们的环境只能处理 32 …