Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 263 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 263 Bytes

leetcode

刷题打怪

email: [email protected]

From Bupt

c-o

c++ speed up ios, toggle off cout && cin, use printf and scanf instead.

static const auto ___ = [](){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    return nullptr;
};