Leetcode 题解

Posted by 芦苇 on 2019-09-11

目录

做 leetcode 时,加上以下代码能够使时长和空间得到优化。(大多数情况)

1
std::ios::sync_with_stdio(false); cin.tie(NULL);

题目参考 haoel/leetcode