Oracle grouping和rollup简单测试SQL> select department_id,sum(salary) from employees where department_id in(10,30,90,100) group by department_id order by de...
分类:
数据库 时间:
2015-06-25 17:21:28
阅读次数:
128
Write a SQL query to get the second highest salary from theEmployeetable.+----+--------+| Id | Salary |+----+--------+| 1 | 100 || 2 | 200 || ...
分类:
数据库 时间:
2015-06-24 18:08:06
阅读次数:
124
#14 Longest Common Prefix
Write a function to find the longest common prefix string amongst an array of strings.
这个题求多个字符串的公共前缀,除了要考虑串空外,如果存在公共前缀,那么必定也是第一个串的前缀。
所以可以以第一个串为基准,比较其他串的前缀是否与第一个串相同。
c...
分类:
其他好文 时间:
2015-06-23 11:55:01
阅读次数:
129
1.css的选择器有哪些? a.内联(style=“”) b.id选择器(id=“”) c.类/伪类/属性选择器(class,first-child,nth-child等) d.元素/为元素选择器(p,span等)2. 清除浮动的方法有哪些 a、使用空标签清除浮动。 b、使用overflow属性.....
分类:
Web程序 时间:
2015-06-22 22:06:49
阅读次数:
279
让用户输入工资输出购物菜单及产品价格计算用户是否可支付输出用户剩余的钱,问用户是否继续购物,如果选择继续,继续进行,直到钱不够为止#coding:UTF-8
importsys
whileTrue:
try:
salary=int(raw_input(‘Pleaseinputyoursalary:‘).strip())
break
except:
print‘Pleaseinput..
分类:
其他好文 时间:
2015-06-22 18:02:40
阅读次数:
172
css匹配选择第n个子元素可以使用:nth-child(n) 选择器,其匹配属于其父元素的第N个子元素,不论元素的类型
hahaah
hahaah
xixi1
xixi2
xixi3
xixi4...
分类:
Web程序 时间:
2015-06-19 00:06:00
阅读次数:
140
对于:nth-child:先看下面的一段代码:<style>
p:nth-child(1){
border:1pxsolid;
}
</style>
<divclass="c1">
<divclass="c11">
<pclass="pp">1</p>
<pclass="pp">2</p>
</div>
<pclass="pp">3</..
分类:
其他好文 时间:
2015-06-18 22:22:26
阅读次数:
129
Given a linked list, remove the nth node from the end of list and return its head.
For example,
Given linked list: 1->2->3->4->5, and n = 2.
After removing the second node from the end, the...
分类:
其他好文 时间:
2015-06-18 09:38:26
阅读次数:
124
这是我第二遍看java书了,感觉看第二遍的时候确实收获不少。我把我自己之前没有注意的一些知识给记录下来。1,首先是构造器,public Employee(String n,double s) {name(实例域)=n(参数变量); salary(实例域)=s(参数...
分类:
编程语言 时间:
2015-06-17 12:49:16
阅读次数:
159
题目大意是就是给出n个长度为7的字符串,每个字符串代表一个车,定义车的距离是两个字符串间不同字母的个数,题目要求的数不同的车的距离的最小值,即所求的就是最小生成树Sample Input4aaaaaaabaaaaaaabaaaaaaabaaaa0Sample OutputThe highest po...
分类:
其他好文 时间:
2015-06-14 14:57:49
阅读次数:
155