LeetCode in action】的更多相关文章

(1) Linked List: 2-add-two-numbers,2.cpp 19-remove-nth-node-from-end-of-list,TBD 21-merge-two-sorted-lists,TBD 83-remove-duplicates-from-sorted-list,83.cpp 141-linked-list-cycle,141.cpp,题解:判断单链表里面有没有环 160-intersection-of-two-linked-lists,160.cpp 203-…
1.leetcode Implement strStr(). Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack. https://blog.csdn.net/freeelinux/article/details/60472659 http://www.cnblogs.com/willaty/default.html?page=2 pyth…
1.Tenth Line How would you print just the 10th line of a file? For example, assume that file.txt has the following content:Line 1Line 2Line 3Line 4Line 5Line 6Line 7Line 8Line 9Line 10 Your script should output the tenth line, which is:Line 10-------…
Given an array of strings, return all groups of strings that are anagrams. Note: All inputs will be in lower-case. 原题链接:https://oj.leetcode.com/problems/anagrams/ 易位构词游戏的英文词汇是 anagram,这个词来源于有"反向"或"再次"的含义的希腊语字根ana-和有"书写"."…
leetcode 主要是一个针对北美的coder人群找工作的代码练习网站,我在2015年初次接触这个网站的时候,总共只有200多道题目,是一个类似acm 的a题网站.这些年变化越来越大,主要是因为找工作当然是多样化的考核过程,leetcode 也逐渐与时俱进,推出了下面几个类别的联系,今天我们随便挑几个练习一下: 175. Combine Two Tables -SQL Table: Person Column Name Type PersonId int FirstName varchar L…
Given an integer array of size n, find all elements that appear more than ⌊ n/3 ⌋ times. Note: The algorithm should run in linear time and in O(1) space. Example 1: Input: [3,2,3] Output: [3] Example 2: Input: [1,1,1,3,3,2,2,2] Output: [1,2] 169. Maj…
本博客是个人原创的针对leetcode上的problem的解法,所有solution都基本通过了leetcode的官方Judging,个别未通过的例外情况会在相应部分作特别说明. 欢迎互相交流! email: tomqianmaple@gmail.com Two Sum Reverse Integer Palindrome Number Roman to Integer Longest Common Prefix Valid Parentheses Merge Two Sorted Lists…
这个脚本半年前就在用了,只不过一直没有公开. 这是一个简易的 LeetCode 自动统计程序, 可自动统计最近提交通过的题目, 并以 Markdown 的形式展示相关的数据. 采用 GitHub Actions 自动化运行程序,无需部署到服务器或本机持续运行了~ 可能对于刷 LeetCode 的小伙伴会有点用. 根据个人需求, 我只重点获取提交次数和重刷次数这两个指标, 目的是为了更好地辅助做题. 脚本地址: leetcode-revise 使用教程 Fork 本仓库 配置 GitHub Act…
TypeScript & LeetCode TypeScript In Action TypeScript 复杂类型 编写复杂的 TypeScript 类型 // 方法「只可能」有两种类型签名 interface Action<T> { payload?: T type: string } asyncMethod<T, U>(input: Promise<T>): Promise<Action<U>> syncMethod<T, U…
很多人说 Redux 代码多,开发效率低.其实 Redux 是可以灵活使用以及拓展的,经过充分定制的 Redux 其实写不了几行代码.今天先介绍一个很好用的 Redux 拓展-- redux-amrc.它可以帮助我们使用更少的样板代码发起异步 action. 低效的过去 一般情况下,为了清楚地记录异步的过程,我们需要使用 三个 action 来记录状态变化.通常,我们的代码会是这样: const LOAD = 'redux-example/auth/LOAD'; const LOAD_SUCCE…