[C++] vector 中使用 push_back() 和 emplace_back() 的差別
Last Updated on 2022-11-29 by Clay
今天在刷題的時候,看到一位分享自己解題思路的網友,他的程式碼中所有宣告的 vector
陣列,全部都使用 emplace_back()
。那時候我可看不明白了,從我在大學上課開始寫時,老師都是教寫 push_back()
的啊?
Last Updated on 2022-11-29 by Clay
今天在刷題的時候,看到一位分享自己解題思路的網友,他的程式碼中所有宣告的 vector
陣列,全部都使用 emplace_back()
。那時候我可看不明白了,從我在大學上課開始寫時,老師都是教寫 push_back()
的啊?
Last Updated on 2022-11-29 by Clay
今天我在進行深度學習的資料前處理時,發現有個資料集中的標籤名稱特別的多樣,但是為了可讀性,我需要把這些資料分別使用不同的變數名稱來儲存,不能每次調用時都用 key 值來取值(其實是為了和之前在好的固定模版配合)。
Read More »[Python] 把 Dict 字典中的 key 值解開成變數Last Updated on 2022-11-29 by Clay
Implement the RandomizedSet
class:
Last Updated on 2022-11-28 by Clay
You are given an integer array matches
where matches[i] = [winneri, loseri]
indicates that the player winneri
defeated player loseri
in a match.
Last Updated on 2022-11-28 by Clay
Given an integer array nums
, return the number of all the arithmetic subsequences of nums
.
Last Updated on 2022-11-28 by Clay
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
.
Last Updated on 2022-11-28 by Clay
Given a positive integer n
, find the pivot integer x
such that:
1
and x
inclusively equals the sum of all elements between x
and n
inclusively.Last Updated on 2022-11-26 by Clay
bisect 是一個 Python 的內建模組,其主要功能是維持一個排序後的 List 順序,讓該 List 在進行插入(insert)操作後無需重新排序整個 List。
Read More »[Python] 陣列二分演算法(Array bisection algorithm)bisect 筆記Last Updated on 2022-11-24 by Clay
tmux 一直以來都受到許多 Linux 使用者的喜愛,除了可以多開、視窗命名、方便管理的快捷鍵….. 以外,最重要的是它內部所執行的進程一直都放在背景,不會隨著關閉終端機而終止程序,非常方便。
Read More »[Linux] 使用指令開啟 tmux 新視窗並執行指令Last Updated on 2022-11-24 by Clay
今天我在建立深度學習模型時,因為返回的資訊缺漏,導致出現了以下這個錯誤訊息:
TypeError: cannot unpack non-iterable float object
Read More »[已解決] `TypeError: cannot unpack non-iterable float object` OR `TypeError: ‘float’ object is not iterable`