Parameters If *lpFileName is a path, there is a default string size limit of MAX_PATH characters. This limit is related to how the CreateFile function ...
分类:
其他好文 时间:
2018-04-27 12:22:27
阅读次数:
218
How to: Debug a Release Build You can debug a release build of an application. To debug a release build Open the Property Pages dialog box for the pro ...
分类:
其他好文 时间:
2018-04-27 12:21:03
阅读次数:
205
A. Love Triangle A. Love Triangle As you could know there are no male planes nor female planes. However, each plane on Earth likes some other plane. T ...
分类:
其他好文 时间:
2018-04-27 02:26:54
阅读次数:
279
https://stackoverflow.com/questions/31593201/pandas iloc vs ix vs loc explanation how are they different ...
分类:
Web程序 时间:
2018-04-26 23:27:28
阅读次数:
305
题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=1892 题目大意: 题目大意:有很多方格,每个方格对应的坐标为(I,J),刚开始时每个格子里有1本书,然后让你统计一片区域有多少本书,还可以增加书和减少,移动书。 解题思路: 直接二维数组数组模拟 注意 ...
分类:
编程语言 时间:
2018-04-26 21:45:20
阅读次数:
214
Circle and Points Time Limit: 5000MS Memory Limit: 30000K Total Submissions: 8346 Accepted: 2974 Case Time Limit: 2000MS Description You are given N p ...
分类:
编程语言 时间:
2018-04-26 21:44:32
阅读次数:
230
(看到一篇挺不错的文章,看了挺有感触的,与大家共勉。) 泰戈尔说: 有一个夜晚,我烧毁了所有的记忆, 从此我的梦就透明了; 有个早晨我扔掉了所有的昨天, 从此我的脚步就轻盈了! 越过山丘,才发现无人等候! 有段话最近很流行:20多岁的你,迷茫又着急,你想要房子、车子、想要旅行、想要高质量的生活你那么 ...
分类:
其他好文 时间:
2018-04-26 19:05:06
阅读次数:
183
题目链接:http://poj.org/problem?id=3286 题目大意: 输入n,m,求[n,m]的所有数字中,0出现的总数是多少,前导零不算。 解题思路: 模板题,设dp[pos][num],pos为数位,num为当前0的数目,然后套数位DP模板即可。 还有之前的一些思考: 关于数位DP ...
分类:
其他好文 时间:
2018-04-26 18:34:42
阅读次数:
185
From:How to properly ignore Exceptions? or 区别: 代码1将捕获KeyboardInterrupt、SystemExit等由exceptions.BaseException直接派生出的类似异常。 代码2将捕获由exceptions.Exception直接派生 ...
分类:
编程语言 时间:
2018-04-26 17:05:26
阅读次数:
669
WEB表单 创建microblog/config.py CSRF_ENABLED = True SECRET_KEY = 'you-will-never-guess' 修改app/__init__.py from flask import Flask app = Flask(__name__) ap ...
分类:
Web程序 时间:
2018-04-26 17:00:41
阅读次数:
266