age = 18count = 3while count > 0: guess = int(input("请输入年龄:")) if guess > age : print("猜大了,往小里猜") count -= 1 elif guess < age : print("猜小了,往大里猜") coun ...
分类:
其他好文 时间:
2018-09-13 20:10:25
阅读次数:
162
class Solution(object): def getHint(self, secret, guess): """ :type secret: str :type guess: str :rtype: str """ A=sum(a==b for a,b in zip(secret,gues ...
分类:
其他好文 时间:
2018-09-11 11:24:13
阅读次数:
162
age=53count=0whilecount<3:ages=int(input("请猜年龄:"))ifages==age:print("你猜对了!")breakelifages<age:print("你猜的年龄小了!")else:print("你猜的年龄大了!")count+=1ifcount==3:ke
分类:
其他好文 时间:
2018-09-09 22:07:06
阅读次数:
193
def bin_search(list,item): low=0 high=len(list)-1 while low<=high: #4 mid = round(((low + high) / 2)+0.1,0) #1 #mid=(low + high) / 2 guess=list[int(mi ...
分类:
编程语言 时间:
2018-09-09 18:10:36
阅读次数:
219
题目: 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. 我从1到 ...
分类:
其他好文 时间:
2018-09-04 20:48:11
阅读次数:
173
参考了其他wp之后才慢慢做出来的 记录一下 首先checksec一下 有canary 放到IDA看下源码 运行流程大概是 有三个fork 即三次输入机会,于是无法爆破cannary 本题用的是SSP leak,当canary被覆盖是就会触发__stack_chk_fail函数,其中会打印字符串arg ...
分类:
其他好文 时间:
2018-09-04 01:55:20
阅读次数:
461
例题4 1 古老的密码 因为字母可以重排,所以顺序不重要,而又同时因为可以映射,所以字母具体是什么不重要== 只要统计 排序 后的结果相同就行了 RE(Runtime error)错法加一: 题号提交错误 c include include define maxn 100 char ans[maxn ...
分类:
其他好文 时间:
2018-09-01 22:02:16
阅读次数:
198
package MonkeyGuess;import java.util.Scanner;public class Guess { public static void main(String[] args) { Scanner scan = new Scanner(System.in); char ...
分类:
其他好文 时间:
2018-08-29 17:00:35
阅读次数:
131
"375. Guess Number Higher or Lower II" Description We are playing the Guess Game. The game is as follows: I pick a number from 1 to n. You have to gue ...
分类:
编程语言 时间:
2018-08-26 12:03:35
阅读次数:
131