摘要: class Solution {public: int titleToNumber(string s) { int len = s.length(); if(len == 0) { return 0; } retur... 阅读全文
posted @ 2015-01-27 23:59 卖程序的小歪 阅读(118) 评论(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 卖程序的小歪 阅读(114) 评论(0) 推荐(0) 编辑