码迷,mamicode.com
首页 >  
搜索关键字:guess    ( 609个结果
031003 while 循环 (3)
# EXAMPLE_NUM01age_of_oldboy = 56count = 0while count < 3: guess_age = int(input("guess age: ")) if guess_age == age_of_oldboy: print("yes,you got it" ...
分类:其他好文   时间:2020-03-10 18:42:13    阅读次数:67
LeetCode 299. 猜数字游戏
先将两个字符串位置相同且大小相等的数字全都换成字母‘x’,(为什么要先剔除大小相等的呢,例如例子 01123,11100 )在用哈希表收集secret中每个字母的个数,遍历guess字符串,若发现guess的数字在secret中存在,那么肯定是位置不同的了(因为位置相同且大小相等的已经换成'x'了, ...
分类:其他好文   时间:2020-03-07 00:10:29    阅读次数:78
用for循环写这段代码
之前用while循环写了一段代码,现在改为用for循环来写,代码如下: hongtao_age = 38 for i in range(5): guess_age = int(input("Please guess the hongtao's age: ")) if guess_age == hon ...
分类:其他好文   时间:2020-02-28 16:04:47    阅读次数:59
利用Java语言编写一个猜数字游戏(有次数限制)
通过调用Scanner类实现键盘导入数据,到程序中. 通过调用Random类产尘随机数 猜数字游戏,有次数限制,代码如下 通过for循环 或者 while循环来限制循环次数 ...
分类:编程语言   时间:2020-02-24 00:09:58    阅读次数:111
[01]Binary Search二分查找
Binary Search二分查找 作用:二分查找适用于有序的的数组或列表中,如果列表及数组中有n个元素,通过二分查找查询某一元素的位置需要的步骤是log2(n)(注:该log的底数是2) 1.Python实现 def binary_search(list,item): low = 0 high = ...
分类:其他好文   时间:2020-02-17 12:05:44    阅读次数:70
[LC] 299. Bulls and Cows
Example 1: Input: secret = "1807", guess = "7810" Output: "1A3B" Explanation: 1 bull and 3 cows. The bull is 8, the cows are 0, 1 and 7. Example 2: In ...
分类:其他好文   时间:2020-02-12 22:25:22    阅读次数:81
【雅思6分】口语-Speaking Part One-Bird
Bird \1. How do you feel about birds? I enjoy watching birds. I especially like birds with colorful feather and twittering sound. 注意:1、bird twitter 而不 ...
分类:其他好文   时间:2020-02-12 22:20:09    阅读次数:162
LeetCode 374. Guess Number Higher or Lower
374. Guess Number Higher or Lower(猜数字大小) 链接 https://leetcode cn.com/problems/guess number higher or lower 题目 我们正在玩一个猜数字游戏。 游戏规则如下: 我从?1?到?n?选择一个数字。 你需 ...
分类:其他好文   时间:2020-02-03 20:57:25    阅读次数:70
HDoj 1004 Let the Balloon Rise
Problem DescriptionContest time again! How excited it is to see balloons floating around. But to tell you a secret, the judges' favorite time is guess ...
分类:其他好文   时间:2020-02-01 16:05:23    阅读次数:66
通过阳历生日计算星座,阴历生日,生辰八字,生肖五行
首先定义一个生日属性的实体对象: 传入日期格式“1999-12-12 12:12”,调用guess得出计算结果: 输出如下: ...
分类:其他好文   时间:2020-01-21 16:29:28    阅读次数:84
609条   上一页 1 ... 3 4 5 6 7 ... 61 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!