码迷,mamicode.com
首页 >  
搜索关键字:ever    ( 3292个结果
android open source
https://github.com/Cleveroad https://github.com/ddwhan0123/Useful-Open-Source-Android https://github.com/JAYAndroid/QiangHongBao https://github.com/le ...
分类:移动开发   时间:2017-02-02 10:59:55    阅读次数:172
OPEN(SAP) UI5 学习入门系列之一:扫盲与热身(上)
什么是SAP Fiori? 了解SAP UI5必须要从SAP Fiori开始,两者概念经常被混淆,而两者也确实有着非常紧密的关系。 用过SAP的同学们都对SAP的传统的界面(SAP GUI)表示“呵呵”,其实传统的SAP GUI的界面功能还是很强大的,但是对于一个新用户来说,学会使用这套界面就需要花 ...
分类:其他好文   时间:2017-01-31 17:47:53    阅读次数:275
判断回文联
#判断回文联 上海自来水来自海上 def judgesentence(sentence): lenth=len(sentence) for each in range(lenth): if sentence[each]==sentence[-(each+1)]: q=True else: q=Fal ...
分类:其他好文   时间:2017-01-31 16:47:49    阅读次数:206
136. Single Number
Given an array of integers, every element appears twice except for one. Find that single one. 一个int型数组,除了其中一个元素以外,其他的均出现两次。 My Solution: Others' Solut ...
分类:其他好文   时间:2017-01-31 15:11:11    阅读次数:195
for/range/break/continue
#for智能循环 members=['武林至尊','宝刀屠龙','号令天下','莫敢不从'] for every in members: print(every,len(every)) 武林至尊 4 宝刀屠龙 4 号令天下 4 莫敢不从 4 武林至尊 4 宝刀屠龙 4 号令天下 4 莫敢不从 4 # ...
分类:其他好文   时间:2017-01-31 14:25:43    阅读次数:170
217. Contains Duplicate
Given an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at least twice in the arr ...
分类:其他好文   时间:2017-01-31 13:40:06    阅读次数:150
UVa 257 Palinword
方法:Hash 一定要好好读题,原题的要求即让你判断一个string时候有两个长度大于3的回文substring,这两个substring可以相交但是不能包含另一方。 一个很重要的observation是我们只需要找长度为3 或者长度为4的回文substring即可(贪心),可以证明, 找长度更长的 ...
分类:其他好文   时间:2017-01-31 11:23:05    阅读次数:208
leetcode 7 Reverse Integer
class Solution { public: int reverse(int x) { int res = 0; while (x != 0) { int t = res * 10 + x % 10; if (t / 10 != res) return 0; res = t; x /= 10; ...
分类:其他好文   时间:2017-01-31 00:30:19    阅读次数:178
Binary Tree Longest Consecutive Sequence Leetcode
Given a binary tree, find the length of the longest consecutive sequence path. The path refers to any sequence of nodes from some starting node to any ...
分类:其他好文   时间:2017-01-30 10:36:35    阅读次数:230
213. House Robber II
Note: This is an extension of House Robber. After robbing those houses on that street, the thief has found himself a new place for his thievery so tha ...
分类:其他好文   时间:2017-01-30 10:34:57    阅读次数:198
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!