今年的主題主要分成兩個部分,一個是補上一些我在2019年挑戰鐵人賽時沒寫到的資料結構,另一部分則是分享我今年練習 LeetCode 的一些紀錄,包括 30 Days of JavaScript、Grind 169 questions 等的題目都會在此出現喔!
14. Longest Common Prefix 解題程式碼 var longestCommonPrefix = function (strs) { if...
67. Add Binary 解題程式碼 var addBinary = function (a, b) { let carry = 0; let re...
191. Number of 1 Bits 解題程式碼 var hammingWeight = function (n) { let count = 0;...
190. Reverse Bits 解題程式碼 var reverseBits = function (n) { let result = 0; for...
50. Pow(x, n) 解題程式碼 var myPow = function (x, n) { if (x === 0) return 0; if...
110. Balanced Binary Tree 解題程式碼 /** * Definition for a binary tree node. * fun...
543. Diameter of Binary Tree 解題程式碼 var diameterOfBinaryTree = function(root) {...
105. Construct Binary Tree from Preorder and Inorder Traversal 解題程式碼 var buildTr...
100. Same Tree 解題程式碼 var isSameTree = function (p, q) { if (p === null &&a...
完賽心得 今年參加鐵人賽,個人感覺是水過一年的感覺XD,因為就只是把解題的練習記錄複製貼上來,但今年因為沒有備太多天的稿,所以在時程的壓力下,的確有達到督促自己...