C++ IO提速
在刷leetcode的时候看别人的优秀代码偶然发现的这段神秘代码
const static auto io_speed_up = []() {
std::ios::sync_with_stdio(false);
cin.tie(0);
return 0;
}();
C++ IO提速
在刷leetcode的时候看别人的优秀代码偶然发现的这段神秘代码
const static auto io_speed_up = []() {
std::ios::sync_with_stdio(false);
cin.tie(0);
return 0;
}();