Given a column title as appear in an Excel sheet, return its corresponding column number. For example: Example 1: Example 2: Example 3: ...
分类:
其他好文 时间:
2018-04-29 12:03:55
阅读次数:
166
1,Lightning Experience app管理 打开setup 在setup中输入app manager如下图所示 可以进行 新建app 等操作 app 中能加载的内容 Web标签,标准和定制对象,Lightning Voice一样的实用功能 Most standard objects, ...
分类:
移动开发 时间:
2018-04-22 12:51:21
阅读次数:
240
① 列表 在页面渲染出来是个 span 标签, 如果你想更改它用 tag 属性。例如 渲染出来就是div ② 列表在循环时 要给每一个列表项添加唯一的key 属性值。这样列表才会有过渡效果 给添加appear属性,实现页面刚刚展示的时候入场的效果 ...
分类:
其他好文 时间:
2018-04-22 00:59:05
阅读次数:
191
找到字符串中只出现一次的字符 方法:用表格记录字符串中每个字符出现的次数,遍历表格,找到计数为1的字符 ...
分类:
其他好文 时间:
2018-04-14 11:17:43
阅读次数:
130
question:Remove Duplicates from Sorted Array Given a sorted array nums, remove the duplicates in-place such that each element appear only once and ret ...
分类:
其他好文 时间:
2018-04-14 11:14:21
阅读次数:
186
题目描述: Given a sorted linked list, delete all duplicates such that each element appear only once. For example,Given 1->1->2, return 1->2.Given 1->1->2- ...
分类:
其他好文 时间:
2018-04-06 15:21:31
阅读次数:
150
这里讲述的是页面实现多个定时器(计时器)时选用NSTimer还是GCD?(干货不湿)的文章,具体方法请看介绍 定时器在我们每个人做的iOS项目里面必不可少,如登录页面倒计时、支付期限倒计时等等,一般来说使用NSTimer创建定时器: + (NSTimer *)timerWithTimeInterva ...
分类:
其他好文 时间:
2018-04-02 18:08:28
阅读次数:
218
Description You have just moved from Waterloo to a big city. The people here speak an incomprehensible dialect of a foreign language. Fortunately, you ...
分类:
其他好文 时间:
2018-03-27 14:50:48
阅读次数:
169
一.git文件状态变化 状态说明 : Untracked: 刚新加的文件,还没有纳入git管理范围 UnModified: 已经committed的文件 Modified: 已经committed的文件,通过vi等修改后,就变成Modified Staged: git add 后的文件 状态转换 : ...
分类:
其他好文 时间:
2018-03-27 12:37:34
阅读次数:
168
问题 Given a sorted array, remove the duplicates in-place such that each element appear only once and return the new length. Do not allocate extra space ...
分类:
其他好文 时间:
2018-03-20 21:41:44
阅读次数:
112