03 2019 档案
摘要:upload 403 error need to change the name in setup.py upload 400 error need to change the version of the same name pkg register: python setup.py regist
阅读全文
摘要:Trie build and search 加 . 正则匹配一个任意字母 ,递归处理,注意p应指向当前遍历字母对应的结点 word search II 1. word list insert to Trie 2. dfs search 421 数组中任意两个数的最大异或值 思路:建树插入所有数,对每
阅读全文
摘要:Wildcard-Matching & Regular Expression Matching Wildcard-Matching中?匹配任意一个字符,*匹配任意长度字符串包括空字符串 方法一:记录*的位置,分别考虑*匹配空,匹配一个,匹配两个,三个... 方法二:DP dp[i][j]=1表示s[
阅读全文
摘要:转自:0giant 管道允许在进程之间按先进先出的方式传送数据,是进程间通信的一种常见方式。 管道是Linux 支持的最初Unix IPC形式之一,具有以下特点: 1) 管道是半双工的,数据只能向一个方向流动;需要双方通信时,需要建立起两个管道; 2) 匿名管道只能用于父子进程或者兄弟进程之间(具有
阅读全文
摘要:blog 这次遇到的问题是sys.path的输出不包含'',导致无法import当前文件和文件夹 When no ._pth file is found, this is how sys.path is populated on Windows: An empty entry is added at
阅读全文