que
anjouwins
这个作者很懒,什么都没留下…
展开
-
遇到问题
question1 leetcode第一题遇到unordered_map class Solution { public: int findY(int x, int target){ if(x == 0) return target; if(target == 0) return -x; else{ if(x == target) return 0; else return -x + target...原创 2018-11-27 22:34:36 · 131 阅读 · 0 评论 -
日常
leetcode第三题 class Solution { public: int lengthOfLongestSubstring(string s) { int i=0,j=1; int length=1; int max=1; while (s.length()==0) return 0; unordered_map<char,int> bank; while(i!=s.lengt...原创 2018-11-30 22:39:17 · 67 阅读 · 0 评论 -
python修改txt文件为csv的方法保存
将各种分隔符改为, def replace(line): print(“replacing…”) if ‘##’ in line: outstr = line.replace(’##’, ‘,’) # 字符串##可以改为你要处理的文件中的分隔符 return outstr filename = ‘/home/anjou/aa/secondattempt.txt’ ...原创 2019-01-24 16:00:02 · 515 阅读 · 0 评论