码迷,mamicode.com
首页 >  
搜索关键字:most    ( 3834个结果
Python>文件操作与异常处理(简单)
打开文件 f = open("test.txt", "w") # 默认查找位置为当前文件夹,“w”模式(只写模式)下,若不存 在 该文件则创建 f = open("test.txt") # 缺省为“r”只读模式,若在当前路径不存在该文件,则报错 "rb" 只读模式,字节流模式;"wb"写入模式,字节 ...
分类:编程语言   时间:2020-06-21 18:13:25    阅读次数:75
哈佛大学公开课 幸福课 积极心理学
https://www.bilibili.com/video/av3404845/?p=18 Perfect love is rare indeed – for to be a lover will require that you continually have the subtlety微妙;敏 ...
分类:其他好文   时间:2020-06-20 21:33:21    阅读次数:124
Project Structure
src & target src: source code, target: compiled. (Most IMPORTANT PARTS of a PROJECT) The Bone : project | | | src | | | | main | | | java | | | resour ...
分类:其他好文   时间:2020-06-19 23:02:55    阅读次数:63
python----列表转字典
虽然元组、列表不可以直接转化为字典,但下面的确是可行的,因为经常用python从数据库中读出的是元组形式的数据。 >>> cc = [('1',1),('2','jiqw'),('3',1372)] >>> dict(cc){'1': 1, '3': 1372, '2': 'jiqw'}123虽然列 ...
分类:编程语言   时间:2020-06-19 22:43:39    阅读次数:94
Codeforces Round #642 (Div. 3) 题解
这场的题目中规中矩,偏重DP类型的。 A题 Most Unstable Array 题意: 让你构造一个长度为n,所有数加和为m的序列,并且使相邻两个数之差的绝对值求和值最大,输出这个最大值。(同时每个数非负) 思路: 显然就像样例中给的一样,我们构造一个长度为n的序列的最方便的方法就是 奇数项都是 ...
分类:其他好文   时间:2020-06-18 22:08:01    阅读次数:82
python继承初始化对象实例时 TypeError: module() takes at most 2 arguments (3 given)
建了两个模块: 第一个Fighter.py: class Fighter(object): """战斗者""" __slots__ = ('_name', '_hp') def __init__(self, name, hp): """初始化方法""" self._name = name self. ...
分类:编程语言   时间:2020-06-18 21:08:44    阅读次数:211
ovs-tcpdump patch
[root@kunpeng82 devuser]# ovs-tcpdump -i patch-ovs-2 Traceback (most recent call last): File "/bin/ovs-tcpdump", line 27, in <module> import netifaces ...
分类:其他好文   时间:2020-06-15 20:51:49    阅读次数:98
pip install 报错 TypeError: 'module' object is not callable
$ pip install xxx Traceback (most recent call last): File "/usr/local/bin/pip2", line 11, in <module> sys.exit(main()) TypeError: 'module' object is n ...
分类:其他好文   时间:2020-06-15 14:04:47    阅读次数:53
Codeforces Round #649 (Div. 2) B. Most socially-distanced subsequence
题目链接:https://codeforces.com/contest/1364/problem/B 题意 给出大小为 $n$ 的一个排列 $p$,找出子序列 $s$,使得 $|s_1-s_2|+|s_2-s_3|+\ldots+|s_{k-1}-s_k|$ 最大的同时 $k$ 尽可能地小。 题解 ...
分类:其他好文   时间:2020-06-14 18:48:20    阅读次数:95
Leetcode: 902. Numbers At Most N Given Digit Set
descption We have a sorted set of digits D, a non-empty subset of {'1','2','3','4','5','6','7','8','9'}. (Note that '0' is not included.) Now, we writ ...
分类:其他好文   时间:2020-06-13 17:10:49    阅读次数:64
3834条   上一页 1 ... 10 11 12 13 14 ... 384 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!