该文被密码保护。 阅读全文
posted @ 2016-08-21 22:46 破玉 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 最新破解更新说明: 参考本人blog: 点我呀 黑屏解决 Vysor使用和黑屏问题 经过了一段时间的艰辛探索,确定是我chrome的PNaCl没有安装,然后又是一段艰辛的Google之后,终于在一个链接里找到了手动安装的方法(戳这里)。 PS:对于最新版本1.6+,下述破解方法不适用,适用于1.5— 阅读全文
posted @ 2016-12-15 19:32 破玉 阅读(3245) 评论(2) 推荐(0) 编辑
摘要: Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string. If the last word 阅读全文
posted @ 2016-12-07 09:46 破玉 阅读(367) 评论(0) 推荐(0) 编辑
摘要: Count the number of segments in a string, where a segment is defined to be a contiguous sequence of non-space characters. For example, Input: "Hello, 阅读全文
posted @ 2016-12-05 21:23 破玉 阅读(859) 评论(0) 推荐(0) 编辑
摘要: Given a string which consists of lowercase or uppercase letters, find the length of the longest palindromes that can be built with those letters. This 阅读全文
posted @ 2016-11-28 10:05 破玉 阅读(550) 评论(0) 推荐(0) 编辑
摘要: We are playing the Guess Game. The game is as follows: I pick a number from 1 to n. You have to guess which number I picked. Every time you guess wron 阅读全文
posted @ 2016-11-27 10:33 破玉 阅读(269) 评论(0) 推荐(0) 编辑
摘要: 阿西吧,今天碰到一件特别蛋疼的事,给Ubuntu安装Python的MySQL驱动,驱动显示安装成功了 但是 在程序中导入,老是报错。 明明驱动安装成功了啊。转念一想,默认的Python版本是2.7.2 应该是安装到2.7的目录下了,要安装到Python3的目录下,应该使用pip3 于是又安装了pip 阅读全文
posted @ 2016-11-26 20:27 破玉 阅读(2880) 评论(0) 推荐(0) 编辑
摘要: Given two strings s and t which consist of only lowercase letters. String t is generated by random shuffling string s and then add one more letter at 阅读全文
posted @ 2016-11-26 10:30 破玉 阅读(397) 评论(0) 推荐(0) 编辑
摘要: alculate the sum of two integers a and b, but you are not allowed to use the operator + and -. Example:Given a = 1 and b = 2, return 3. 注意:不能使用运算符喽 那我 阅读全文
posted @ 2016-11-25 09:28 破玉 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 好长时间没用小飞机了,今天打开发现,无法启动了。 查看了日志: 端口监听失败,小飞机默认本地端口是1080,于是我们使用如下命令查看1080端口的占用情况。 我们看到,1080端口被迅雷占用了 于是我们更改小飞机的本地监听端口为1081 并且更改本地代理的监听端口为1081,我们又能愉快的Googl 阅读全文
posted @ 2016-11-24 19:50 破玉 阅读(1629) 评论(0) 推荐(0) 编辑
摘要: Write a function that takes a string as input and returns the string reversed. Example:Given s = "hello", return "olleh". 阅读全文
posted @ 2016-11-24 09:54 破玉 阅读(233) 评论(0) 推荐(0) 编辑