LeetCode

最近花了很多時間,深入撿起以前的算法。在LeetCode上面會慢慢更新題目
我的進度
總結(jié)在github上面,點這里

id 標題 難度 語言
70 Climbing Stairs Easy [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Climbing Stairs.md)
69 Sqrt(x) Medium C++
67 Add Binary Easy [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Add Binary.md)
66 Plus One Easy [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Plus One.md)
64 Minimum Path Sum Medium [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Minimum Path Sum.md)
63 Unique Paths II Medium [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Unique Paths II.md)
62 Unique Paths Medium [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Unique Paths.md)
61 Rotate List Medium [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Rotate List.md)
59 Spiral Matrix II Medium [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Spiral Matrix II.md)
58 Length of Last Word Easy [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Length of Last Word.md)
56 Merge Intervals Hard [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Merge Intervals.md)
57 Insert Interval Hard [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Insert Interval.md)
55 Jump Game Medium [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Jump Game.md)
54 Spiral Matrix Medium [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Spiral Matrix.md)
53 Maximum Subarray Medium [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Maximum Subarray.md)
52 N-Queens II Hard [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/N-Queens II.md)
51 N-Queens Hard C++
50 Pow(x, n) Medium [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Pow(x, n).md)
49 Group Anagrams Medium [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Group Anagrams.md)
47 Permutations II Medium [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Permutations II.md)
46 Permutations Medium C++
45 Jump Game II Hard [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Jump Game II.md)
41 First Missing Positive Hard [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/First Missing Positive.md)
40 Combination Sum II Medium [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Combination Sum II.md)
39 Combination Sum Medium [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Combination Sum.md)
36 Valid Sudoku Easy [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Valid Sudoku.md)
35 Search Insert Position Medium [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Search Insert Position.md)
34 Search for a Range Medium [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Search for a Range.md)
31 Next Permutation Medium [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Next Permutation.md)
28 Implement strStr() Easy [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Implement strStr().md)
27 Remove Element Easy [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Remove Element.md)
26 Remove Duplicates from Sorted Array Easy [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Remove Duplicates from Sorted Array.md)
24 Swap Nodes in Pairs Easy [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Swap Nodes in Pairs.md)
23 Merge k Sorted Lists Hard [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Merge k Sorted Lists.md)
22 Generate Parentheses Medium [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Generate Parentheses.md)
21 Merge Two Sorted Lists Easy [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Merge Two Sorted Lists.md)
20 Valid Parentheses Easy [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Valid Parentheses.md)
19 Remove Nth Node From End of List Easy [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Remove Nth Node From End of List.md)
18 4Sum Medium C++
17 Letter Combinations of a Phone Number Medium [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Letter Combinations of a Phone Number.md)
16 3Sum Closest Medium [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/3Sum Closest.md)
15 3Sum Medium C++
14 Longest Common Prefix Easy [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Longest Common Prefix.md)
13 Roman to Integer Easy [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Roman to Integer.md)
12 Integer to Roman Medium [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Integer to Roman.md)
9 Palindrome Number Easy [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Palindrome Number.md)
8 String to Integer Easy [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/String to Integer.md)
7 Reverse Integer Easy [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Reverse Integer.md)
6 ZigZag Conversion Easy [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/ZigZag Conversion.md)
5 Longest Palindromic Substring Medium [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Longest Palindromic Substring.md)
3 Longest Substring Without Repeating Characters Medium [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Longest Substring Without Repeating Characters.md)
2 Add Two Numbers Medium [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Add Two Numbers.md)
1 Two Sum Easy [C++](https://github.com/JKair/LeetCode/blob/master/Algorithms/Two Sum.md)
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市绞蹦,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌榜旦,老刑警劉巖幽七,帶你破解...
    沈念sama閱讀 221,576評論 6 515
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異溅呢,居然都是意外死亡澡屡,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 94,515評論 3 399
  • 文/潘曉璐 我一進店門咐旧,熙熙樓的掌柜王于貴愁眉苦臉地迎上來驶鹉,“玉大人,你說我怎么就攤上這事铣墨∈衣瘢” “怎么了?”我有些...
    開封第一講書人閱讀 168,017評論 0 360
  • 文/不壞的土叔 我叫張陵,是天一觀的道長姚淆。 經(jīng)常有香客問我孕蝉,道長,這世上最難降的妖魔是什么腌逢? 我笑而不...
    開封第一講書人閱讀 59,626評論 1 296
  • 正文 為了忘掉前任降淮,我火速辦了婚禮,結(jié)果婚禮上搏讶,老公的妹妹穿的比我還像新娘骤肛。我一直安慰自己,他們只是感情好窍蓝,可當(dāng)我...
    茶點故事閱讀 68,625評論 6 397
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著繁成,像睡著了一般吓笙。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上巾腕,一...
    開封第一講書人閱讀 52,255評論 1 308
  • 那天面睛,我揣著相機與錄音,去河邊找鬼尊搬。 笑死叁鉴,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的佛寿。 我是一名探鬼主播幌墓,決...
    沈念sama閱讀 40,825評論 3 421
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼冀泻!你這毒婦竟也來了常侣?” 一聲冷哼從身側(cè)響起命贴,我...
    開封第一講書人閱讀 39,729評論 0 276
  • 序言:老撾萬榮一對情侶失蹤但两,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后羽嫡,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體肢专,經(jīng)...
    沈念sama閱讀 46,271評論 1 320
  • 正文 獨居荒郊野嶺守林人離奇死亡舞肆,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 38,363評論 3 340
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了博杖。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片椿胯。...
    茶點故事閱讀 40,498評論 1 352
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖欧募,靈堂內(nèi)的尸體忽然破棺而出压状,到底是詐尸還是另有隱情,我是刑警寧澤,帶...
    沈念sama閱讀 36,183評論 5 350
  • 正文 年R本政府宣布种冬,位于F島的核電站镣丑,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏娱两。R本人自食惡果不足惜莺匠,卻給世界環(huán)境...
    茶點故事閱讀 41,867評論 3 333
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望十兢。 院中可真熱鬧趣竣,春花似錦、人聲如沸旱物。這莊子的主人今日做“春日...
    開封第一講書人閱讀 32,338評論 0 24
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽宵呛。三九已至单匣,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間宝穗,已是汗流浹背户秤。 一陣腳步聲響...
    開封第一講書人閱讀 33,458評論 1 272
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留逮矛,地道東北人鸡号。 一個月前我還...
    沈念sama閱讀 48,906評論 3 376
  • 正文 我出身青樓,卻偏偏與公主長得像须鼎,于是被迫代替她去往敵國和親鲸伴。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 45,507評論 2 359

推薦閱讀更多精彩內(nèi)容