iT邦幫忙

bryantjz 所有喜歡的留言 44

[LeetCode #1] Map

var twoSum = function(nums, target) { const m = new Map(); let result;...

2021-02-17 ‧ 由 Dylan 留言

[LeetCode #1] Map

這個例子中,使用 Map 的效率感覺明顯會比使用 Array 快上許多,但因為 Map.prototype.has 跟 Map.prototype.get 在時...

2020-03-08 ‧ 由 Alex Liu 留言

集合 Set

Union 聯集的程式碼 // 範例一 const a = new Set([1, 2, 3]) const b = new Set([2, 3, 4, 5,...

2020-02-20 ‧ 由 rainbowrain 留言

[Day 11] 演算法刷題 LeetCode 4. Median of Two Sorted Arrays (Hard)

會把這一題放在 hard 應該是因為題目提到的:「 The overall run time complexity should be O(log (m+n))...

2019-09-27 ‧ 由 huli 留言

達標好文 [Day 02] React 中一定會用到的 JavaScript 語法

重新複習這一系列,然後想補充 "其餘語法(rest syntax)" 那邊假如硬要同時抓 offers 跟 price 其實也可以 cons...

2020-11-01 ‧ 由 hannahpun 留言