摘要:
class Solution {public: bool isPalindrome(string s) { // Start typing your C/C++ solution below // DO NOT write int main() function int p = 0, q = s.size()-1; while((s[p] < 'a' || s[p] > 'z' ) && (s[p] < '0' || s[p] > '9') && (s[p] < 阅读全文
posted @ 2013-01-24 03:51 tuantuanls 阅读(197) 评论(0) 推荐(0)
浙公网安备 33010602011771号