leetcode – 34. Search for a Range – Medium descrition Given an array of integers sorted in ascendi…
分类:LeetCode
[剑指offer] 整数中1出现的次数(从1到n整数中1出现的次数)
本文首发于我的个人博客:尾尾部落 题目描述 求出113的整数中1出现的次数,并算出1001300的整数中1出现的次数?为此他特别数了一下1~13中包含1的数字有1、10、11、12、13因此共出现6次,但是对于后面问题他…
46. Permutations 排列数
46. Permutations 题目 Given a collection of distinct numbers, return all possible permutations. For example, [1,…
[LeetCode] Network Delay Time 网络延迟时间
There are N network nodes, labelled 1 to N. Given times, a list of travel…
LeetCode | Substring with Concatenation of All Words
题目: You are given a string, S, and a list of words, L, that are all of the same length. Find all sta…
LeetCode总结-K-Sum问题
最近在刷 LeetCode 上的题为找工作提前做准备,在刷 Array 类问题的 Easy 难度的题的时候觉得还好,大部分的题还是能够想得出来,但是在刷到 Medium 难度的时候,明显感觉难度提升了,其中有一类题型连续…
Leetcode. Add N Sum类问题
今天无意中听到同事面试, 问到了add n sum类的问题. 想到leetcode上有很多类似的问题, 特地整理一下。 Q1: 2Sum Given an array of integers, return indice…
算法: Sum of left Leaves
Sum of left Leaves 计算二叉树种所有叶子左叶子节点的值的总合 /** * Definition for a binary tree node. * public class TreeNode { * p…
709. To Lower Case
描述 Implement function ToLowerCase() that has a string parameter str, and returns the same string in lowercase.…
399. Evaluate Division
https://leetcode.com/problems/evaluate-division/ 输入为: equations = [ ["a", "b"], ["b", "c"] ], values = [2.0, 3…
三刷98. Validate Binary Search Tree
Medium 三刷还是没写出来,醉了。总的思路就是限定范围,这里用Integer type来定义范围,可以解决给的root的范围不知道的问题。 /** * Definition for a binary tree nod…
Leetcode 137.Single Number II
Given an array of integers, every element appears three times except for one, which appears exactly once. Find…