题目: In your childhood you most likely had to solve the riddle of the house of Santa Claus. Do you remember that the importance was on drawing the hous ...
分类:
其他好文 时间:
2019-09-16 09:59:12
阅读次数:
99
函数 https://docs.python.org/3/library/functions.html 编程实例 1.打印质数 for n in range (2,100): if n==2: print(n) continue for i in range (2, n): if (n %i) == ...
分类:
编程语言 时间:
2019-09-14 18:34:02
阅读次数:
117
函数式 起源于范畴论。其诞生就是「学术领域」影响「编程领域」的结果。 函数式就是要求用面向本质的、纯的函数,来完成求值的功能。是一种数学运算。 基本运算方式:「柯里化」与「合成」 函数式编程有两个最基本的运算:合成和柯里化。 数学运算要求「无状态编程」,函数本身不能有可保留的变量。 要求做到一个输入 ...
分类:
其他好文 时间:
2019-09-14 14:14:50
阅读次数:
149
Description You may have wondered why most extraterrestrial life forms resemble humans, differing by superficial traits such as height, colour, wrinkl ...
分类:
其他好文 时间:
2019-09-13 01:12:33
阅读次数:
143
2/kafka配置文件参数详解默认必须配置的参数默认kafkaserver.properties配置如下:#############################ServerBasics##############################服务器基础知识#Theidofthebroker.Thismustbesettoauniqueintegerforeachbroker.#必须为每个代理
分类:
其他好文 时间:
2019-09-12 11:37:00
阅读次数:
116
演示一个程序异常 >>> anumber = int(input("Please enter an integer "))Please enter an integer -23>>> print(math.sqrt(anumber))Traceback (most recent call last) ...
分类:
编程语言 时间:
2019-09-11 17:32:32
阅读次数:
75
元组 1.元组与列表类似,里面的元素用","号隔开,使用小括号 2.元组里面的数据不可修改 tuple = (1,2,3,4,'b') 修改元组中的元素,不可修改 当元组中只有一个元素时,需要在后面加上逗号',',否则会被当成运算符使用 访问元组,同样遵循顾头不顾尾的规则 删除元组,不能删除元组中的 ...
分类:
编程语言 时间:
2019-09-11 12:02:13
阅读次数:
77
博客园markdown太烂, 题解详情 Leetcode Solution 11~20 marks: @: hard to get a direct solution %: need optimization 好题 %%% 11. Container With Most Water[Medium] ...
分类:
其他好文 时间:
2019-09-10 20:45:15
阅读次数:
94
1051 Pop Sequence (25 分) 1051 Pop Sequence (25 分) 1051 Pop Sequence (25 分) Given a stack which can keep M numbers at most. Push N numbers in the order ...
分类:
其他好文 时间:
2019-09-08 00:04:08
阅读次数:
99
ERROR: Exception:Traceback (most recent call last): File "C:\Users\admin\AppData\Roaming\Python\Python37\site-packages\pip\_internal\cli\base_command. ...
分类:
其他好文 时间:
2019-09-05 18:18:04
阅读次数:
121