
Python
文章平均质量分 78
RichyTang
这个作者很懒,什么都没留下…
展开
-
Python Challenge(0--1关)——我的解题报告(running with python3.x)
这个编程游戏,我现在开始在我的博客记录我一关一关刷下去的日子。另外说一句,我用的是python版本是3.3.2第一关:http://www.pythonchallenge.com/pc/def/0.html 这关很简单,图片给出的线索就是求2的38次方。因为python的“科学计算”能力,所以我们直接把结果搞出来就可以了。print(2**38) 根原创 2013-10-02 19:24:05 · 1156 阅读 · 0 评论 -
Python Challenge(2--3关)——我的解题报告(running with python3.x)
前面关卡的解题报告在这里http://blog.youkuaiyun.com/richytang/article/details/12237519第2关:http://www.pythonchallenge.com/pc/def/ocr.html 提示中已经很明确的告诉你,对你有帮助的东西可能在网页源代码里。我们查看一下网页源代码,往下一拉页面,Fxxk,那一堆注释的内容应该就是了。要从原创 2013-10-03 11:37:35 · 1199 阅读 · 0 评论 -
Python Challenge(4--5关)——我的解题报告(running with python3.x)
前面关卡的解题报告在这里http://blog.youkuaiyun.com/richytang/article/details/12249507(第2-3关)第4关:http://www.pythonchallenge.com/pc/def/linkedlist.php 这关的名字叫做follow the chain。关名往往时能提供很多帮助的。关卡只有一张图片,结果发现图片是能点击的原创 2013-10-03 22:09:01 · 1560 阅读 · 0 评论 -
Python Challenge(6--7关)——我的解题报告(running with python3.x)
前面关卡的结题报告在这里http://blog.youkuaiyun.com/richytang/article/details/12257467(第4-5关)第6关:http://www.pythonchallenge.com/pc/def/channel.html 这关的名字叫:now there are the pairs。关内只有一张图片,是拉链。源代码里只有第一行是有用的信息。原创 2013-10-04 23:31:01 · 1690 阅读 · 0 评论 -
Python Challenge(8--9关)——我的解题报告(running with python3.x)
前面关卡的结题报告在这里http://blog.youkuaiyun.com/richytang/article/details/12288135(第6-7关)第8关:http://www.pythonchallenge.com/pc/def/integrity.html 这关的名字叫做working hard?鉴于上一关的难度,这关我做好了应对大麻烦的心理。结果这关...至少比原创 2013-10-05 13:55:26 · 1891 阅读 · 0 评论 -
Python Challenge(10--11关)——我的解题报告(running with python3.x)
前面关卡的解题报告在这里http://blog.youkuaiyun.com/richytang/article/details/12308825(第8-9关)第10关:http://www.pythonchallenge.com/pc/return/bull.html 这关的名字叫做what are you looking at? 关卡内的信息:len(a[30])=? 意思很明显,原创 2013-10-08 22:56:31 · 1918 阅读 · 0 评论