近年來想要進行程式人員相關的面試前,上 LeetCode 刷題成為了一門顯學。不過對於初學者來刷 LeetCode 前,應該要先有一些基本的知識儲備、邏輯工具的建立,以免淪入有看過的題目就會寫,沒看過的題目就放棄的窘境。「先別急著寫 LeetCode」這堂在 Lidemy 上屬於完全免費的課程,就是專門來解決這個疑難雜症的。
課程相關資訊
[連結]:https://lidemy.com/p/alg101-leetcode
Course 1 ~ Course 12 (全部一共有 106 Courses)
請注意:本系列文章為個人對應課程的消化吸收後,所整理出來的內容。換言之,並不一定會包含全部的課程內容,也有可能會添加其他資源來說明。
內容
1. 把想法轉換成程式碼的基本功,像是判斷質數、寫出九九乘法、印星星聖誕樹等等的。
2. 運用 LidemyOJ 線上批改,跟 LeetCode 的撰寫程式介面、提交方式都很像,應該很快可以上手。
若你是使用 JavaScript 的話,那會用以下的方式來提交:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
題目: [Input] 1 2 [Expected Output] 3 var readline = require('readline'); var lines = [] //每行的值會以陣列的方式來儲存 var rl = readline.createInterface({ input: process.stdin }); rl.on('line', function (line) { lines.push(line) }); rl.on('close', function() { solve(lines) }) //以 console.log() 裡的結果當做答案 function solve(lines) { console.log( lines[0].split(' ').reduce((a,b)=> Number(a) + Number(b)) ) } |
3. 先構思,再開始寫,前者是比較困難的。
4. 先構思 Pseudo Code,把想法先寫下來,再轉換成程式碼。
相關文章
★全文分享★ [筆記] ALG101 – 先別急著寫 LeetCode22
最後一個為有效率的求取最大整數連續和
★全文分享★ [筆記] ALG101 – 先別急著寫 LeetCode21
先前做過的簡單排序法、搜尋數字,改用
★全文分享★ [筆記] ALG101 – 先別急著寫 LeetCode20
接著來練習用迴圈的方法來解決陣列最短
★全文分享★ [筆記] ALG101 – 先別急著寫 LeetCode19
接下來練習搜尋數字和連續整數和,先從
★全文分享★ [筆記] ALG101 – 先別急著寫 LeetCode18
先求有,再求好。這個部分要稍微帶到演
★全文分享★ [筆記] ALG101 – 先別急著寫 LeetCode17
接下來的兩題,其核心概念為 N 進位數和
★全文分享★ [筆記] ALG101 – 先別急著寫 LeetCode16
國中程度競賽題的實作,其實難度本身不
★全文分享★ [筆記] ALG101 – 先別急著寫 LeetCode15
接著要來進行一些國中程度競賽題的挑戰
★全文分享★ [筆記] ALG101 – 先別急著寫 LeetCode14
這篇筆記下實作 String.prototype.padEnd, String.p
★全文分享★ [筆記] ALG101 – 先別急著寫 LeetCode13
這篇筆記下實作 String.prototype.toLowerCase, Str
★全文分享★ [筆記] ALG101 – 先別急著寫 LeetCode12
這篇筆記下實作 Array.prototype.fill, Array.proto
★全文分享★ [筆記] ALG101 – 先別急著寫 LeetCode11
更多的練習是必要的,這篇筆記下實作 Arr
★全文分享★ [筆記] ALG101 – 先別急著寫 LeetCode10
雖說 JavaScript 已經有不少的內建函式,例
★全文分享★ [筆記] ALG101 – 先別急著寫 LeetCode9
到了經典題目的最後了,來練習求出最近
★全文分享★ [筆記] ALG101 – 先別急著寫 LeetCode8
繼續更多的練習,來進行加減乘除、迴文
★全文分享★ [筆記] ALG101 – 先別急著寫 LeetCode7
在盡可能不使用內建函式的情況下,來判
★全文分享★ [筆記] ALG101 – 先別急著寫 LeetCode6
經歷過前幾個單元的準備,總算是要進入
★全文分享★ [筆記] ALG101 – 先別急著寫 LeetCode5
這個階段透過實作練習,讓你可以了解到
★全文分享★ [筆記] ALG101 – 先別急著寫 LeetCode4
在實際解決題目之前,要先理解平台修改
★全文分享★ [筆記] ALG101 – 先別急著寫 LeetCode3
講述空間、時間和範圍型態的限制外,以
★全文分享★ [筆記] ALG101 – 先別急著寫 LeetCode2
除了撰寫虛擬碼外,另外一件重要的環節