私鏈作為區塊鏈的應用之一擁有很高的發展性,任何人、單位、機關,都可以建立自己的私鏈來儲存重要資訊,並且私鏈也提供了跟公鏈一樣的以下幾種特性...
[線性代數] Basis (基)(基向量)
發表於
基(basis) 是線性代數中的核心概念之一...
[線性代數] Vector Space (向量空間)
發表於
向量空間(Vector Space)是線性代數中的核心概念之一...
[LeetCode]28. Find the Index of the First Occurrence in a String
發表於
分類於
LeetCode
,
2023 march daily challenge
[LeetCode]1971. Find if Path Exists in Graph
發表於
分類於
LeetCode
- 難度:
Easy
- 花費時間:
- 題目: 1971. Find if Path Exists in Graph
給你一張包含 n
個節點的圖,這張圖的每個節點會沿著邊緣 edge
連向其他節點(不會連向自己)。
給你 source
跟 destination
兩個節點,判斷 source
有沒有辦法透過 dege
走到 destination
。
[LeetCode]1026. Maximum Difference Between Node and Ancestor
發表於
分類於
LeetCode
- 難度:
Medium
- 花費時間: 20 min
- 題目: 1026. Maximum Difference Between Node and Ancestor
給定你一個 Binary Tree
,假定我們要求一個數 v
, v
的定義是這個樹的父節點減去子節點取絕對值,而我們要找出最大的 v
- 設
a
為任一父節點,b
為任一子節點 v = |a - b|
[LeetCode]876. Middle of the Linked List
發表於
分類於
LeetCode
- 難度:
Easy
- 花費時間: 5 min
- 題目: 876. Middle of the Linked List
給你一個 Linked List
,回傳他的中間,如果他的中間有兩個,就回傳第二個。
[LeetCode]1657. Determine if Two Strings Are Close
發表於
分類於
LeetCode
- 難度:
Medium
- 花費時間: 30 min
- 題目: 1657. Determine if Two Strings Are Close
給你兩個字串 word1
與 word2
,判斷這兩個字串是否 [相似]
兩個 [相似] 的字串必須在進行以下兩個操作之後可以相等,這兩個操作都可以做無數次。
- 交換兩個字母
- 把字串內的某字母與字串內的另一個某字母互換
怎麼建立及使用 GitHub Deploy Keys
發表於
分類於
GitHub
在使用 GitHub 的時候常常看到可以使用 SSH 來操作 repo ,但是不知道怎麼用的話,看這篇就對了!
[LeetCode]102. Binary Tree Level Order Traversal
發表於
分類於
LeetCode
,
Data Structure I
Algorithm I 筆記撰寫計畫 第十一天第一題,共三題。
- 難度:
Easy
- 花費時間: 10 min
- 題目: 102. Binary Tree Level Order Traversal
給你一個 Binary Tree
,按照層級遍歷他,並回傳遍歷值的結果。