装虚拟机了。CentOs,32位,这电脑装4台能不能带起来啊。 早上,流鼻血了,不知道咋回事。太干了。。。 明天得早起会,得利索着点,不能托托拉拉的。 还有,今天又忘带钥匙了。悲剧。 睡觉。hadoop。mapreduce。好高深啊。 今天就看了一集,感觉好累。 sleep。
分类:
其他好文 时间:
2015-12-17 00:22:02
阅读次数:
143
//: Playground - noun: a place where people can playimport UIKit// fallthrough// fallthrough会在当前case执行完之后继续下一个case// 如果在下一个case中声明了变量, 则不能使用fallthroug...
分类:
编程语言 时间:
2015-12-16 19:07:19
阅读次数:
157
//: Playground - noun: a place where people can playimport UIKit// 对区间进行判断var score = 90switch score {case 0: print("You got an egg!")case 1..是介绍运算...
分类:
编程语言 时间:
2015-12-16 17:11:15
阅读次数:
162
cmd到anacondaconda install mingw libpythonif overtime maybe you need conda clean --clockorYou can do this with conda by using the -f flag when installi...
分类:
其他好文 时间:
2015-12-16 15:33:17
阅读次数:
173
Given a binary tree, imagine yourself standing on the right side of it, return the values of the nodes you can see ordered from top to bottom.For exam...
分类:
其他好文 时间:
2015-12-16 15:23:21
阅读次数:
184
//: Playground - noun: a place where people can playimport UIKitvar str = "Hello, playground"let orangeAreYellowColor = truelet appleIsBlue = falseif ...
分类:
编程语言 时间:
2015-12-16 12:33:38
阅读次数:
137
//: Playground - noun: a place where people can playimport UIKitvar str = "Hello, playground"// 数值类型转换let three = 3let PI = Double(three) + 0.1415926 ...
分类:
编程语言 时间:
2015-12-16 12:27:15
阅读次数:
148
//: Playground - noun: a place where people can playimport UIKitvar str = "Hello, playground"// nil的聚合运算可以说是为了可选值而出的 // 它的体现是"??"// eg:// a ?? b -> ....
分类:
编程语言 时间:
2015-12-16 12:25:25
阅读次数:
154
//: Playground - noun: a place where people can playimport UIKitvar str = "Hello, playground"var a = 1, b = 10// a到b(包含a,b) [a,b]a...b// a到b-1(包含a,不包含...
分类:
编程语言 时间:
2015-12-16 12:21:53
阅读次数:
169
//: Playground - noun: a place where people can playimport UIKitvar str = "Hello, playground"// 断言, 必须符合某个条件,程序才能继续运行下去// 可以看做是一个底线要求var age = 19;asse...
分类:
编程语言 时间:
2015-12-16 12:16:24
阅读次数:
184