leetcode 9

Posted 晴朗

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 9相关的知识,希望对你有一定的参考价值。

判断回文数

 1 class Solution {
 2 public:
 3     bool isPalindrome(int x) {
 4         std::stringstream ss;
 5         ss<<x;
 6         string str;
 7         ss>>str;
 8         for(int i=0,j=str.size()-1;i<j;i++,j--)
 9         if(str[i]!=str[j])
10         return 0;
11         return 1;
12     }
13 };

 

以上是关于leetcode 9的主要内容,如果未能解决你的问题,请参考以下文章

超级有用的9个PHP代码片段

VSCode自定义代码片段9——JS中的面向对象编程

LeetCode 1024. 视频拼接(每日一题)

;~ 小部分AutoHotkey源代码片段测试模板2019年10月9日.ahk

leetcode_1292. Maximum Side Length of a Square with Sum Less than or Equal to Threshold_[二维前缀和](代码片段

贪心算法:划分字母区间