列表的增删改 names=['candy','kevin','ann','lilei','lily'] users=[admin,cc,sc,cr] 查 print(names[1]) 增 names.append('hanmeimei') 给list从末尾添加值 names.insert(0,'w ...
分类:
编程语言 时间:
2017-06-03 21:02:01
阅读次数:
151
tuple也是一个强制类型转换的函数 tp = ('candy','kevin','may','kevin') 内置方法: tp.count('kevin') tp.index('candy') 元祖是一个不可变的list,只有count和index方法 tuple(list) 可以把list进行强 ...
分类:
编程语言 时间:
2017-06-03 21:01:23
阅读次数:
127
img: 待检测的图像。 threshold: 阈值,可先项,默认为10 line_length: 检测的最短线条长度,默认为50 line_gap: 线条间的最大间隙。增大这个值可以合并破碎的线条。默认为10 返回: lines: 线条列表, 格式如((x0, y0), (x1, y0)),标明开 ...
分类:
编程语言 时间:
2017-05-29 00:27:52
阅读次数:
2294
Given an integer array with even length, where different numbers in this array represent different kinds of candies. Each number means one candy of th ...
分类:
其他好文 时间:
2017-05-22 13:35:23
阅读次数:
200
Given an integer array with even length, where different numbers in this array represent different kinds of candies. Each number means one candy of th... ...
分类:
其他好文 时间:
2017-05-13 22:10:03
阅读次数:
173
Given an integer array with even length, where different numbers in this array represent different kinds of candies. Each number means one candy of th ...
分类:
其他好文 时间:
2017-05-13 00:32:59
阅读次数:
154
Given an integer array with even length, where different numbers in this array represent different kinds of candies.Each number means one candy of the ...
分类:
其他好文 时间:
2017-05-07 12:53:10
阅读次数:
229
目录 1 问题描述 2 解决方案 1 问题描述 问题描述 有n个小朋友围坐成一圈。老师给每个小朋友随机发偶数个糖果,然后进行下面的游戏: 每个小朋友都把自己的糖果分一半给左手边的孩子。 一轮分糖后,拥有奇数颗糖的孩子由老师补给1个糖果,从而变成偶数。 反复进行这个游戏,直到所有小朋友的糖果数都相同为 ...
分类:
编程语言 时间:
2017-05-03 11:28:09
阅读次数:
255
给定一群站好队的小孩而且按某项分值排名(姑且如果为年龄吧),年龄大的要比他身边年龄小的拿的糖要多。求怎么分配糖果使得分配的糖果数最少。 用一个数组从左到右再从右到左的遍历,向前遍历时若右边的比左边的大则其值为前一个糖果数+1,向后遍历时则推断假设比后面的小孩的年龄要大且糖果数比其还少则更改其糖果数为 ...
分类:
其他好文 时间:
2017-04-29 21:08:14
阅读次数:
111
var num1 = 0; var num2 = 0; var num3 = 0; var num4 = 0; var num5 = 0; var num6 = 0; var num7 = 0; var num8 = 0; var num9 = 0; var num10 = 0; for (var ... ...
分类:
其他好文 时间:
2017-04-08 22:48:41
阅读次数:
220