摘要: 原文链接: "https://leetcode.com/problems/palindrome number/description/" 。这道题目难度是简单,然后解答也是简单易懂,虽然我还是没能写出正确答案。。。 我的思路 首先,我想到的是将整数转换为一个字符数组,然后再比对对应位置上的字符是否相 阅读全文
posted @ 2018-02-26 22:05 optor 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 题目链接: "https://leetcode.com/problems/reverse integer/description/" 这道题目解答出来本身也并无难度,只是方法优劣而已。然后开始我还是写了个最笨的方法: Java / Created by clearbug on 2018/2/26. 阅读全文
posted @ 2018-02-26 19:16 optor 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 题目链接: "https://leetcode.com/problems/median of two sorted arrays/description/" 这道题解答貌似并没有什么难度,但是却有时间复杂度的限制。对于我这种算法战五渣来说能写出实现就已经很好了,所以我先写了个最简单的答案: Java 阅读全文
posted @ 2018-02-26 10:44 optor 阅读(94) 评论(0) 推荐(0) 编辑