/* 自定義代碼塊樣式 */

herrDeng網內搜尋

自訂搜尋

Ads

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月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月16日 星期六

Py3 C++陣列迴圈速解Leetcode 1323 Maximum 69 Number


Py3 C++陣列迴圈速解Leetcode 1323  Maximum 69 Number
學程式的第一式,就是要會活用陣列迴圈,足以解Leetcode 1323. Maximum 69 Number 
[Py3解請進]

2025年8月13日 星期三

C++一行解Leetcode 326 Power of Three


C++一行解Leetcode 326  Power of Three
利用3的羃次方的因數也是3的羃次方,導出一行C++程式碼
[解答請進]
Related Posts Plugin for WordPress, Blogger...

熱門文章