什麼是ECDSA?
Herr Deng桑的教學blog
這是Herr Deng桑的教學blog,主要處理作業與班導事務,另外還有數位小品。
herrDeng網內搜尋

自訂搜尋
Ads
3009年5月25日 星期四
2025年8月28日 星期四
Py3 C++速解Leetcode 3446 Sort Matrix by Diagonals/with Py3 code
Py3 C++速解Leetcode 3446 Sort Matrix by Diagonals
矩陣問題都是很好的迴圈、陣列練習,又加上排序那就是很好的練習題
[Py3 code請進]
2025年8月27日 星期三
C++ dp動態規劃解Leetcode 3459 Length of Longest V Shaped Diagonal Segment
C++ dp動態規劃解Leetcode 3459 Length of Longest V Shaped Diagonal Segment
採DP動態規劃迭代版本解難題,需要定義V-shaped distance
------
Using the DP dynamic programming iterative version, it is necessary to define the V-shaped distance
2025年8月26日 星期二
Py3 C++畢氏定理速解Leetcode 3000 Maximum Area of Longest Diagonal Rectangle
Py3 C++畢氏定理速解Leetcode 3000 Maximum Area of Longest Diagonal Rectangle
Py3 C++ Pythagorean Theorem Quick Solution Leetcode 3000 Maximum Area of Longest Diagonal Rectangle
2025年8月24日 星期日
Py3 C++ sliding window速解Leetcode1493 Longest Subarray of 1's After Dele...
Py3 C++ sliding window速解Leetcode1493 Longest Subarray of 1's After Deleting One Element
示範如何從一般 sliding window解答簡化成單迴圈解答解無if
[Py3解在此,請進]
2025年8月23日 星期六
C++bitmask陣列切割解Leetcode難題3197 Find the Minimum Area to Cover All Ones II
C++bitmask陣列切割解Leetcode難題3197 Find the Minimum Area to Cover All Ones II
這是個立方時間的解答,主要採bitmask陣列法表達矩陣,應該沒人這樣做,最快時間已達8ms擊敗100%的C++參與者。
---------------
This is a cubic time solution, which mainly uses the bitmask array method to express the matrix. It is unlikely that anyone would do this. The fastest time has reached 8ms, beating 100% of the C++ participants.
2025年8月20日 星期三
C++ dp動態規劃速解Leetcode 1277 Count Square Submatrices with All Ones
C++ dp動態規劃速解Leetcode 1277 Count Square Submatrices with All Ones
使用matrix當成state matrix
2025年8月16日 星期六
Py3 C++陣列迴圈速解Leetcode 1323 Maximum 69 Number
Py3 C++陣列迴圈速解Leetcode 1323 Maximum 69 Number
學程式的第一式,就是要會活用陣列迴圈,足以解Leetcode 1323. Maximum 69 Number
[Py3解請進]
2025年8月15日 星期五
Leetcode 342 Power of Four幾個C++一行解
Leetcode 342 Power of Four幾個C++一行解
[codes on Leetcode]https://leetcode.com/problems/power-of-four/solutions/7081839/9-ways-of-bit-manipulation-1-liner-beats-100/
[bit/ bitmask playlist]https://www.youtube.com/watch?v=Hw1fnQA8Nk8&list=PLYRlUBnWnd5K8FlzJ6tOswqQcsk7R1Duh
2025年8月13日 星期三
C++一行解Leetcode 326 Power of Three
C++一行解Leetcode 326 Power of Three
利用3的羃次方的因數也是3的羃次方,導出一行C++程式碼
[解答請進]
訂閱:
文章 (Atom)
熱門文章
-
請用CPU-Z軟體檢測Cache & Memory 註:快取(L1-L3: SRAM) 第一級快取(L1)–通常存取只需要幾個週期,通常是幾十個KB。 第二級快取(L2)–比L1約有2到10倍較高延遲性,通常是幾百個KB或更多。 第三級快取(L3)(不...
-
計算gcd(123456789,999999999)
-
需要練習的Java程式:
-
C++ DP速解難題leetcode 3363 Find the Maximum Number of Fruits Collected [Python解請進]
-
輸入字串s 輸入int x 輸出 x個s
-
Leetcode 342 Power of Four幾個C++一行解 [codes on Leetcode] https://leetcode.com/problems/power-of-four/solutions/7081839/9-ways-of-bit-manipula...
-
問int怎麼存-689這個數字。 int用4個bytes。 答案請用16進位表達。