最近忙于工作,好久没有写博客了。上周六刷到LeetCode上的一道题,没有想出来,不甘心,两天来断断续续想了想,突然想出来使用动态规则可以解决!立刻动手写了代码,AC了。 代码放在GitHub上了:https://git…
标签:LeetCode
LeetCode 292. Nim游戏
题目描述: 你和你的朋友,两个人一起玩 Nim游戏:桌子上有一堆石头,每次你们轮流拿掉 1 – 3 块石头。 拿掉最后一块石头的人就是获胜者。你作为先手。 你们是聪明人,每一步都是最优解。 编写一个函数,来判…
LeetCode算法题-Rotate Array(Java实现)
这是悦乐书的第184次更新,第186篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第43题(顺位题号是189)。给定一个数组,将数组向右旋转k步,其中k为非负数。例如: 输入:[1,2,3,…
681. Next Closest Time
Medium Given a time represented in the format “HH:MM”, form the next closest time by reusing the c…
LeetCode 350. Intersection of Two Arrays II
Given two arrays, write a function to compute their intersection. Example:Given nums1 = [1, 2, 2, 1] , nums2 =…
[剑指offer] JAVA版题解(全)
序号 题解 牛客 OJ 数据结构类型 03 [剑指offer] 二维数组中的查找 二维数组中的查找 数组 04 [剑指offer] 替换空格 替换空格 字符串 05 [剑指offer] 从尾到头打印链表 从尾到头打印链表…
43. 字符串相乘-leetcode大数相乘算法java实现
我的leetcode评论: https://leetcode-cn.com/problems/multiply-strings/comments/30927 我的github代码: https://github.com/…
二刷127. Word Ladder
Medium 卧槽,我真的强烈地感觉这道题是DFS呀,结果看答案都是BFS做的,趁机好好反省一下,最近的一次刷这道题仅仅是在一个月前,就连基本的处理方向都选错了。 我有句妈卖批不知当讲不当讲,这道题一直TLE搞了一个多小…
[array] leetCode-26. Remove Duplicates from Sorted Array - Easy
26. Remove Duplicates from Sorted Array – Easy descrition Given a sorted array, remove the duplicates in…
Leetcode112.Path Sum
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the value…
[剑指offer] 连续子数组的最大和
本文首发于我的个人博客:尾尾部落 题目描述 HZ偶尔会拿些专业问题来忽悠那些非计算机专业的同学。今天测试组开完会后,他又发话了:在古老的一维模式识别中,常常需要计算连续子向量的最大和,当向量全为正数的时候,问题很好解决。…
Longest Substring Without Repeating Characters
转载请注明出处: http://egoistk21.xyz/2016/09/06/Longest Substring Without Repeating Characters/ 最长无重字符子串 给定一个字符串,找到最长…