class Solution {
public:
vector<int> shuffle(vector<int>& nums, int n) {
}
};
版本:clang 19 采用最新 C++ 23 标准,并使用 GCC 14 提供的 libstdc++。
clang 19
libstdc++
编译时,将会采用 -O2 级优化,并提供 -gline-tables-only 参数。AddressSanitizer 也被开启来检测 out-of-bounds 和 use-after-free 错误。
-O2
-gline-tables-only
out-of-bounds
use-after-free
为了使用方便,大部分标准库的头文件已经被自动导入。