[deprecated]
codeforces每日打卡题列表[置顶]
2019年9月17日: 793[B], 652[C] 2019年9月16日: 320[B], 166[E] 2019年9月15日: 1167[C], 1120[D] 2019年9月14日: 114[B ...
leetcode-[word系列]-[79,212,126,127,139,140,290,291]
lc上有这样关键词含有word的两两成组的八道题, 分别是word break I&II, word pattern I&II, word ladder I&II, word ...
leetcode-[单调队列]-[239,1425]
239. Sliding Window Maximum思路类似这种在某个valid value set里面取最值的题目其实很多, 比如218 city skyline问题的heap解法, 也是把当前有 ...
leetcode-1274-Number of Ships in a Rectangle
描述On the sea represented by a cartesian plane, each ship is located at an integer point, and each in ...
leetcode-369-Plus-One-Linked-List
描述给定一个非负整数,这个整数表示为一个非空的单链表,每个节点表示这个整数的一位。返回这个整数加一。 除了0本身,所有数字在最高位前都没有0。 列表的头节点存的是这个整数的最高位。 样例1 输入: 1 ...
Leetcode-subarray和substring上面的双指针/滑动窗口
3. Longest Substring Without Repeating Characters给定一个字符串,返回其中不含有重复字符的最长子串的长度。 class Solution(object) ...
leetcode-1246-Palindrome Removal
描述(搬运)Given an integer array arr, in one move you can select a palindromic subarray arr[i], arr[i+1] ...
lintcode-126. Max Tree
描述Given an integer array with no duplicates. A max tree building on this array is defined as follow: ...