網頁

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解在此,請進]