摘要:
class Solution {public: int titleToNumber(string s) { int len = s.length(); if(len == 0) { return 0; } retur... 阅读全文
posted @ 2015-01-27 23:59
卖程序的小歪
阅读(123)
评论(0)
推荐(0)
摘要:
class Solution {public: int trailingZeroes(int n) { int count = 0; while (n) { count += n / 5; n /= 5; }... 阅读全文
posted @ 2015-01-27 23:53
卖程序的小歪
阅读(119)
评论(0)
推荐(0)