Linuxer, ex IBMer. GNU https://hmchzb19.github.io/
全部博文(297)
发布时间:2018-04-13 11:33:54
1.. p, li { white-space: pre-wrap; }reverse a singly-linked-list , given the head, return the new head .在C语言里面这个题就是纯粹的指针问题. 点击(此处)折叠或打开class Node: __slots__='element','next' .........【阅读全文】
发布时间:2018-04-11 15:46:21
接上文7.p, li { white-space: pre-wrap; }#given a string, determine if it is comprised of all unique character:#eg: 'abcde' -> True# 'abcda' -> False这个题,第一反应是将list转换成set, 比较length, 结果就很明白了。点击(此处)折叠或打开def uni_chars(s):.........【阅读全文】
发布时间:2018-04-09 10:45:11
继续昨天的Array problem:4.p, li { white-space: pre-wrap; }#check two strings are anagrams:#eg: "public relations" "crap built on lies"这个anagram_checker 见过无数次了点击(此处)折叠或打开def anagram_checker(s1, s2): .........【阅读全文】
发布时间:2018-04-08 11:36:49
最近看了点视频,用代码记录下,今天是Array. 1. find the most frequently occurred item in an Array思路很简单,就是用词典来记录item出现的次数就可以,key 是item, value是item出现的次数。注意处理有多个item同时有最高的出现次数就可以了。 点击(此处)折叠或打开def most_fre.........【阅读全文】
发布时间:2018-03-05 17:18:19
书名: Make Your Own Python Text Adventuregithub: https://github.com/apress/make-your-own-python-text-adventure花了3,4天的时间把这本书读完了,感觉质量非常高,使用到的Python库很少,但是一点点深入,从过程到对象。最后利用6个文件作出一个纯Text的游戏,很不错。.........【阅读全文】
fireboyz20052010-11-10 18:27
HI, 看到你"http://bbs.chinaunix.net/viewthread.php?tid=1806065"
这里的提问,你是不是在看一本叫《Shell脚本专家指南》的书?我也在阅读,我新手,不如大家交流一下,看到不明白也可以大家一起研究研究。
我的qq是:369035906
或gtalk:jiale.chan@gmail.com