摘要:
使用 powershell 的 grep 过滤文本有个log文件,大小在4M左右,要求找出里面耗时超过100s 的记录。首先想到了强大的 grep ,那么就搞起。先在网上找一下资料,这篇文章,有几种方式:第一种:Get-content somefile.txt|findstr "someregexp... 阅读全文
摘要:
简单的算法题, Find Minimum in Rotated Sorted Array 的Python实现。题目:Suppose a sorted array is rotated at some pivot unknown to you beforehand.(i.e., 0 1 2 4 5 6... 阅读全文