博客
分类
标签
归档
友链
关于
博客
分类
标签
归档
友链
关于
fuujiro's island
文档
帮助
示例
社区
博客
源码
false
true
LeetCode提高Runtime Distribution的骚操作
在class Solution这行前,粘贴下面这句: 1static int x = []{ios::sync_with_stdio(false);cin.tie(nullptr);return 0;}(); 或者 12345static const auto ____ = [] { std::ios::sync_with_stdio(false); ...
2018-09-27
Algorithm
阅读全文
LeetCode题解:9. Palindrome Number
link: 9. Palindrome Number Solution 1: 1234567891011121314class Solution {public: bool isPalindrome(int x) { int a = 0, b = x; while(b > 0) { a = a *...
2018-09-24
Algorithm
阅读全文