Given an array of integers and an integer k, you need to find the minimum size of continuous subarrays whose sum equals to k, and return its length. i ...
分类:
其他好文 时间:
2020-03-18 09:33:00
阅读次数:
42
Given a non-negative integer represented as non-empty a singly linked list of digits, plus one to the integer. You may assume the integer do not conta ...
分类:
其他好文 时间:
2020-03-15 13:27:25
阅读次数:
48
413. 反转整数 中文English 将一个整数中的数字进行颠倒,当颠倒后的整数溢出时,返回 0 (标记为 32 位整数)。 样例 样例 1: 输入:123 输出:321 样例 2: 输入:-123 输出:-321 class Solution: def reverseInteger(self,n ...
分类:
其他好文 时间:
2020-03-11 12:38:20
阅读次数:
50
You have a pointer at index 00 in an array of size arrLenarrLen. At each step, you can move 11 position to the left, 11 position to the right in the a ...
分类:
其他好文 时间:
2020-03-09 01:38:36
阅读次数:
87
Given a binary tree, find the subtree with maximum average. Return the root of the subtree. Example 1 Input: {1,-5,11,1,2,4,-2} Output:11 Explanation: ...
分类:
其他好文 时间:
2020-03-05 13:42:34
阅读次数:
56
211. 字符串置换 给定两个字符串,请设计一个方法来判定其中一个字符串是否为另一个字符串的置换。 置换的意思是,通过改变顺序可以使得两个字符串相等。 样例 Example 1: Input: "abcd", "bcad" Output: True Example 2: Input: "aac", ...
分类:
其他好文 时间:
2020-03-05 00:50:38
阅读次数:
92
185. 矩阵的之字型遍历 给你一个包含 m x n 个元素的矩阵 (m 行, n 列), 求该矩阵的之字型遍历。 样例 样例 1: 输入: [[1]] 输出: [1] 样例 2: 输入: [ [1, 2, 3, 4], [5, 6, 7, 8], [9,10, 11, 12] ] 输出: [1, ...
分类:
其他好文 时间:
2020-03-04 09:52:28
阅读次数:
94
import java.util.Arrays /** * 252. Meeting Rooms * (Locked by Leetcode) * https://www.lintcode.com/problem/meeting-rooms/description * Given an array ...
分类:
其他好文 时间:
2020-03-01 00:30:35
阅读次数:
60
158. 两个字符串是变位词 写出一个函数 anagram(s, t) 判断两个字符串是否可以通过改变字母的顺序变成一样的字符串。 样例 样例 1: 输入: s = "ab", t = "ab" 输出: true 样例 2: 输入: s = "abcd", t = "dcba" 输出: true 样 ...
分类:
其他好文 时间:
2020-02-24 09:34:44
阅读次数:
58
这是一道想起来简单,但是实现起来困难的题目,因为要考虑的情况有点多 https://www.lintcode.com/problem/remove node in binary search tree/ 1.删除节点是叶节点,直接删除 2.删除节点是非叶节点,且非满节点,可用其子树节点取代 3.删除 ...
分类:
其他好文 时间:
2020-02-21 18:00:06
阅读次数:
76