Use is when you want to check against an object's identity (e.g. checking to see if var is None). Use == when you want to check equality (e.g. Is var ...
分类:
编程语言 时间:
2016-12-27 14:13:12
阅读次数:
175
盲评结果出来了。然而对于我并没有太大的影响。从头到尾我没有紧张过,自然也不会有如释重负的感觉。 昨天说了事情要提前做准备。早上,到教研室挺早,review的时候,发现论文中一个关于目录的小问题,解决掉之后,便开始写信。因为大家等待盲评结果的焦急心情,也不能让我平静。下午,在一个免费的查重网站上查了绪 ...
分类:
其他好文 时间:
2016-12-27 07:44:13
阅读次数:
180
目录: 标题栏 : ion-header-bar ion-header-bar指令声明一个标题栏元素,标题栏总是位于屏幕的顶部: ion-header-bar指令有两个可选的属性: align-title - 设置标题文字的对齐方式。允许值:left | right | center,分别对应左对齐 ...
分类:
其他好文 时间:
2016-12-27 07:27:49
阅读次数:
2548
python s12 day3 深浅拷贝 对于 数字 和 字符串 而言,赋值、浅拷贝和深拷贝无意义,因为其永远指向同一个内存地址。 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 import copy # ######### 数字、字符串 ######### n1 = 12 ...
分类:
编程语言 时间:
2016-12-26 21:15:03
阅读次数:
434
https://leetcode.com/problems/counting-bits/ 给定一个非负数n,输出[0,n]区间内所有数的二进制形式中含1的个数 Example: For num = 5 you should return [0,1,1,2,1,2]. 注意fellow up部分,题目 ...
分类:
其他好文 时间:
2016-12-26 14:03:32
阅读次数:
159
DISPLAY_ITEM built-in in Oracle D2k FormsDescriptionMaintained for backward compatibility only. For new applications, you should use theSET_ITEM_INSTA... ...
分类:
数据库 时间:
2016-12-25 21:06:35
阅读次数:
226
Learn how to use single Oracle Form's Alert object for warning/information messages and confirmation messages such as asking for delete confirmation e... ...
分类:
数据库 时间:
2016-12-25 01:32:14
阅读次数:
336
283. Move Zeroes 给定任意一个数组,把其中的0都移到该数组的末尾,其他的数字相对顺序要保持不变。例如:nums = [0, 1, 0, 3, 12], after calling your function, nums should be [1, 3, 12, 0, 0]. 思路:不 ...
分类:
其他好文 时间:
2016-12-24 22:43:48
阅读次数:
183
Given a linked list, swap every two adjacent nodes and return its head. For example,Given 1->2->3->4, you should return the list as 2->1->4->3. Your a ...
分类:
其他好文 时间:
2016-12-24 14:08:21
阅读次数:
129
Given an array and a value, remove all instances of that value in place and return the new length. Do not allocate extra space for another array, you ...
分类:
其他好文 时间:
2016-12-24 14:05:27
阅读次数:
156