Problem Given an array of integers and an integer k, you need to find the number of unique k-diff pairs in the…
标签:LeetCode
招募管理员
如题。 本人程序员,读过些书,不求甚解。 为人和善,如果你有时间的话,可以帮忙打理一下这个专题。 当然,有几个条件 1. 你喜欢写点东西。 2. 你登录jianshu.com的频率比我高。 3. 你不是程序员。 虽然这个…
二刷Word Search
Medium 基本bug free吧,dfs.这道题的时间复杂度分析起来还是挺有意思的,第一次搜索第一个字母需要O(M*N),对于board里面的每个位置,我们都要从四个方向去搜索下一个位置。可以想象一棵quadtree…
2018-05-14 172. Factorial Trailing Zeroes
题意:给你一个数n,输出n的阶乘n!尾端0的个数。 解题思路:阶乘结果末端的0是由5 * 2、5 * 4、5 * 偶数和10、20、30… 100、200…1000等末尾含0的乘数构成。 其实10…
LeetCode[15] - Flip Game II
这个题目李特是屌炸天的。 我飞了九牛二虎之力(路子对),但是代码写的七荤八素,好长好长好长好长的。 结果正解,三四行就搞定了。真是心有不甘啊。 想法如下: 保证p1能胜利,就必须保持所有p2的move都不能赢。 同时,p…
【LeetCode】- Reverse Nodes in k-Group
1、题目描述 Given a linked list, reverse the nodes of a linked list k at a time and return its modified list. k is …
566. Reshape the Matrix
描述 In MATLAB, there is a very useful function called ‘reshape’, which can reshape a matrix into a …
LeetCode算法题-Find Mode in Binary Search Tree(Java实现)
这是悦乐书的第246次更新,第259篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第113题(顺位题号是501)。给定具有重复项的二叉搜索树(BST),找到给定BST中的所有模式(最常出现的…
FB计算器加乘括号
加乘无括号 public static int simpleCaculator(String s){ if (s == null || s.length() == 0){ return 0; } int res = 0;…
606. Construct String from Binary Tree
You need to construct a string consists of parenthesis and integers from a binary tree with the preorder trave…
LeetCode刷题之Min Stack
Problem Design a stack that supports push, pop, top, and retrieving the minimum element in constant time. push…
[剑指offer] 滑动窗口的最大值
本文首发于我的个人博客:[尾尾部落](https://weiweiblog.cn/maxinwindows/) 题目描述 给定一个数组和滑动窗口的大小,找出所有滑动窗口里数值的最大值。例如,如果输入数组{2,3,4,2,…