2021年10月1日 星期五

Distance 筆記

最近一直寫 Leetcode,部落格也就荒廢許久,想說突破 200 題來分享一下心得。 Distance question Leetcode 上有很多問題是關於距離,這裡紀錄下一些有用的數學概念。 平均值 (mean) 平均值的歐幾里得距離最短 (4*4 + 4*4 < 1*1 + 7*7) 但相乘值最大 (4*4 > 1*7) 中位數...

2021年6月18日 星期五

Segment Tree 筆記

Segment-Tree 介紹 主要用來找區間最大值或區間總和。由於我是為了這題所以以區間總和做介紹。下面陣列是應對區間總和,每個 node 紀錄的有起始點, 結束點及區間總和,EXAMPLE: [0,4] 代表 index 0 ~ 4 的總和,其總和為 10,[0,0] 代表 index 0~0 也就是 nums[0] 的本身值。至於樹為什麼長這樣跟 Build tree...

2021年6月11日 星期五

讀書心得 - C++ Primer (5th Edition) - Chapter 5 (2) - Exception

Exceptions Exceptions 是程式在 run-time 遇到的異常,比如與資料庫的連結斷開或遇到其他程式異想不到的 input。Exception handling 基本上就是當程式無法解決問題或者無法繼續執行時發出警告,或者更進一步根據情況處理 exception。 Exception handling 由 detecting, handling parts...

2021年5月20日 星期四

讀書心得 - C++ Primer (5th Edition) - Chapter 4 (1) - Expression & Operator

Expression 運算式 (expression) 由運算元 (operand) 與運算子 (operator) 所組成,最終計算產生一個結果 (result)。 Order of Evaluation 想要計算 expression 的話,就必須知道運算子運作及其先後順序。這裡的 * 號就不是 pointer 而是相乘,然後再來是基本的先乘除後加減。 ...

2021年5月13日 星期四

C++ Primer (5th Edition)

總覽 讀書心得 - C++ Primer (5th Edition) - Chapter 1 讀書心得 - C++ Primer (5th Edition) - Chapter 2 (1) - Primitive Types 讀書心得 - C++ Primer (5th Edition) - Chapter 2 (2) - Const 讀書心得 - C++ Primer (5th Edition) - Chapter 2 (3) - Type Aliases 讀書心得 - C++ Primer (5th Edition) - Chapter...

2021年5月11日 星期二

2021年5月6日 星期四

2021年5月4日 星期二

網頁開發筆記

重新踏入網頁開發 重新踏入網頁開發 (1) - Nodejs 重新踏入網頁開發 (2) - ES6 重新踏入網頁開發 (3) - Route 重新踏入網頁開發 (4) - Dependency injection 重新踏入網頁開發 (5) - Blocking & Non-Blocking 重新踏入網頁開發 (6) - Express - 2 重新踏入網頁開發 (6) - Express - 3 重新踏入網頁開發 (6) - Express - 4 重新踏入網頁開發 (6)...

2021年4月27日 星期二

Git - 刪除 submodule

Git - delete submodule 因為上網 Google 這問題你會發現這個Stackoverflow和這個Github的答案。很久以前查的時候 stackoverflow 置頂的答案是以前最多 upvote 的答案,也就是 githb 的答案。但 git 在版本更新後那個 7 步刪除 submodule 的已經過時了。雖然還是可以用但現在三步就可完成。 ...

2021年4月26日 星期一

Google API - Python 學習筆記 - Upload post

Google Blogger API Table 其實找到好用的 Google API document 就完成 80% 了,這裡紀錄 Python 連結。再紀錄個 Google 給開發者用的 Playground,可以讓你先試試 API。 Post article 這裡紀錄程式碼模擬平常的流程,但其實可以只用 insert 就完成所有事。 New Post ...

2021年4月13日 星期二

Google API - Python 學習筆記

Google API - python ver. 紀錄一些使用 python 呼叫 Google API 的心得 基本前置作業 Google Account 首先你要有 google 帳號。 Google Cloud Platform project 想要使用 Google Cloud Platform (GCP) 的 service,你需要創建一個...

2021年4月11日 星期日

JQuery - $( document ).ready()

JQuery - $( document ).ready() 鑒於 $( document ).ready() 有縮寫,導致初學者如我看不懂,這裡紀錄一下。 基本版本 $( document ).ready() 基本上是等 Document Object Model ( DOM ) 好了後,可以執行 JavaScript code 時啟動。另外常見的 $( window...

Python Error - UnicodeDecodeError: 'cp950' codec can't decode

讀檔時 UnicodeDecodeError: 'cp950' codec can't decode 老實說這非常常見,即使你的檔案是用 UTF-8 編寫,而且用 Python3 ( 絕大部分 default 是 utf-8 ),仍會報這個錯。所以要避免程式能在不同平台都能正常使用,讀檔時最好都加上 encoding="utf-8" with open("somefile.py",...

Popular Posts