随笔分类 -  LeetCode

摘要:每天 3 分钟,走上算法的逆袭之路。 前文合集 每日一道 LeetCode 前文合集 代码仓库 GitHub: https://github.com/meteor1993/LeetCode Gitee: https://gitee.com/inwsy/LeetCode 题目:最后一个单词的长度 题目 阅读全文
posted @ 2020-08-10 09:45 极客挖掘机 阅读(170) 评论(0) 推荐(0) 编辑
摘要:每天 3 分钟,走上算法的逆袭之路。 前文合集 每日一道 LeetCode 前文合集 代码仓库 GitHub: https://github.com/meteor1993/LeetCode Gitee: https://gitee.com/inwsy/LeetCode 题目:最大子序和 题目来源:h 阅读全文
posted @ 2020-08-10 09:43 极客挖掘机 阅读(155) 评论(0) 推荐(0) 编辑
摘要:每天 3 分钟,走上算法的逆袭之路。 前文合集 每日一道 LeetCode 前文合集 代码仓库 GitHub: https://github.com/meteor1993/LeetCode Gitee: https://gitee.com/inwsy/LeetCode 题目:外观数列 题目来源:ht 阅读全文
posted @ 2020-08-10 09:41 极客挖掘机 阅读(287) 评论(0) 推荐(0) 编辑
摘要:每天 3 分钟,走上算法的逆袭之路。 前文合集 每日一道 LeetCode 前文合集 代码仓库 GitHub: https://github.com/meteor1993/LeetCode Gitee: https://gitee.com/inwsy/LeetCode 题目:搜索插入位置 题目来源: 阅读全文
posted @ 2020-08-08 10:41 极客挖掘机 阅读(235) 评论(0) 推荐(0) 编辑
摘要:每天 3 分钟,走上算法的逆袭之路。 前文合集 每日一道 LeetCode 前文合集 代码仓库 GitHub: https://github.com/meteor1993/LeetCode Gitee: https://gitee.com/inwsy/LeetCode 题目:实现 strStr() 阅读全文
posted @ 2020-08-07 09:01 极客挖掘机 阅读(210) 评论(0) 推荐(0) 编辑
摘要:每天 3 分钟,走上算法的逆袭之路。 前文合集 每日一道 LeetCode 前文合集 代码仓库 GitHub: https://github.com/meteor1993/LeetCode Gitee: https://gitee.com/inwsy/LeetCode 引言 今天破例两道题,原因是我 阅读全文
posted @ 2020-08-06 09:17 极客挖掘机 阅读(296) 评论(0) 推荐(0) 编辑
摘要:每天 3 分钟,走上算法的逆袭之路。 前文合集 每日一道 LeetCode 前文合集 代码仓库 GitHub: https://github.com/meteor1993/LeetCode Gitee: https://gitee.com/inwsy/LeetCode 题目:合并两个有序链表 题目来 阅读全文
posted @ 2020-08-05 08:56 极客挖掘机 阅读(247) 评论(0) 推荐(0) 编辑
摘要:每天 3 分钟,走上算法的逆袭之路。 前文合集 每日一道 LeetCode 前文合集 代码仓库 GitHub: https://github.com/meteor1993/LeetCode Gitee: https://gitee.com/inwsy/LeetCode 题目:有效的括号 题目来源:h 阅读全文
posted @ 2020-08-04 09:47 极客挖掘机 阅读(249) 评论(0) 推荐(0) 编辑
摘要:前文合集 每日一道 LeetCode 前文合集 代码仓库 GitHub: https://github.com/meteor1993/LeetCode Gitee: https://gitee.com/inwsy/LeetCode 题目:最长公共前缀 题目来源:https://leetcode-cn 阅读全文
posted @ 2020-08-02 10:40 极客挖掘机 阅读(278) 评论(0) 推荐(0) 编辑
摘要:前文合集 每日一道 LeetCode 前文合集 题目:罗马数字转整数 题目来源:https://leetcode-cn.com/problems/roman-to-integer/ 罗马数字包含以下七种字符: I, V, X, L,C,D 和 M。 字符 数值 I 1 V 5 X 10 L 50 C 阅读全文
posted @ 2020-08-01 10:31 极客挖掘机 阅读(1229) 评论(0) 推荐(1) 编辑
摘要:前文合集 每日一道 LeetCode 文章合集 题目:回文数 题目来源:https://leetcode-cn.com/problems/palindrome-number/ 判断一个整数是否是回文数。回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。 示例 1: 输入: 121 输出: 阅读全文
posted @ 2020-07-31 09:07 极客挖掘机 阅读(569) 评论(0) 推荐(1) 编辑
摘要:题目:整数反转 题目来源:https://leetcode-cn.com/problems/reverse-integer 给出一个 32 位的有符号整数,你需要将这个整数中每位上的数字进行反转。 示例 1: 输入: 123 输出: 321 示例 2: 输入: -123 输出: -321 示例 3: 阅读全文
posted @ 2020-07-30 08:45 极客挖掘机 阅读(225) 评论(0) 推荐(1) 编辑
摘要:引言 前段时间看到一篇刷 LeetCode 的文章,感触很深,我本身自己上大学的时候,没怎么研究过算法这一方面,导致自己直到现在算法都不咋地。 一直有心想填补下自己的这个短板,实际上又一直给自己找理由各种推脱。 结果今天晚上吃多了,下定决心要刷一波 LeetCode 的题,刷题的过程顺便写点文章分享 阅读全文
posted @ 2020-07-29 08:50 极客挖掘机 阅读(463) 评论(0) 推荐(2) 编辑

点击右上角即可分享
微信分享提示