Python
LeetCode: 2225-Find Players With Zero or One Losses 解題紀錄
題目
You are given an integer array matches
where matches[i] = [winneri, loseri]
indicates that the player winneri
defeated player loseri
in a match.
LeetCode: 446-Arithmetic Slices II - Subsequence 解題紀錄
題目
Given an integer array nums
, return the number of all the arithmetic subsequences of nums
.
LeetCode: 2486-Append Characters to String to Make Subsequence 解題紀錄
題目
ou are given two strings s
and t
consisting of only lowercase English letters.
Return the minimum number of characters that need to be appended to the end of s
so that t
becomes a subsequence of s
.
LeetCode: 2485-Find the Pivot Integer 解題紀錄
題目
Given a positive integer n
, find the pivot integer x
such that:
- The sum of all elements between
1
andx
inclusively equals the sum of all elements betweenx
andn
inclusively.
[Python] 陣列二分演算法(Array bisection algorithm)bisect 筆記
bisect 是一個 Python 的內建模組,其主要功能是維持一個排序後的 List 順序,讓該 List 在進行插入(insert)操作後無需重新排序整個 List。
Read More »[Python] 陣列二分演算法(Array bisection algorithm)bisect 筆記[已解決] `TypeError: cannot unpack non-iterable float object` OR `TypeError: 'float' object is not iterable`
問題描述
今天我在建立深度學習模型時,因為返回的資訊缺漏,導致出現了以下這個錯誤訊息:
TypeError: cannot unpack non-iterable float object
Read More »[已解決] `TypeError: cannot unpack non-iterable float object` OR `TypeError: 'float' object is not iterable`[Python] 如何計算變數、物件存取了多少記憶體
隨著專案開發計畫越來越講究執行速度、記憶體存取率,我們顯然很有必要了解自己的程式中,那些變數啊、物件啊究竟使用了多少的記憶體。
Read More »[Python] 如何計算變數、物件存取了多少記憶體LeetCode: 79-Word Search 解題紀錄
題目
Given an m x n
grid of characters board
and a string word
, return true
if word
exists in the grid.