码迷,mamicode.com
首页 >  
搜索关键字:a simple game    ( 11903个结果
【PAT甲级】1103 Integer Factorization (30分)
1103 Integer Factorization (30分) The K ? P factorization of a positive integer N is to write N as the sum of the P th power of K positive integers. Yo ...
分类:其他好文   时间:2020-01-27 19:07:20    阅读次数:76
LeetCode 174. Dungeon Game(DP)
"题目" 题意:每个格子里都有数字,负数代表你会少血,正数代表你会加血,当你的血量为0的时候就死了,从左上角出发,到右下角,问你一开始最少的血量是多少。整个过程中不能有血量为0的情况。 题解:只能走下或者走右。这种有向无环图,八成都是动态规划。但是如果从左上角开始规划,有很多情况要考虑。从右下角开始 ...
分类:其他好文   时间:2020-01-27 17:32:36    阅读次数:49
PAT Advanced 1041 Be Unique (20分)
Being unique is so important to people on Mars that even their lottery is designed in a unique way. The rule of winning is simple: one bets on a numbe ...
分类:其他好文   时间:2020-01-27 15:17:12    阅读次数:55
用Python玩微信跳一跳详细使用教程
github地址:https://github.com/wangshub/wechat_jump_game 工具介绍 Python 3 Android 手机 Adb 驱动 Python Matplot绘图 python3安装 安装pip 安装依赖包 在github地址将源码下载下来解压后,使用cd命 ...
分类:微信   时间:2020-01-26 20:58:24    阅读次数:139
Python流程控制
条件语句if....else... 1 temp=input("please input one number:") 2 guest=int(temp) 3 if guest==8: 4 print("You are lucky!") 5 print("But no prize!") 6 else: ...
分类:编程语言   时间:2020-01-26 14:38:58    阅读次数:99
Egret学习-TiledMap使用
环境说明: 引擎版本:5.2.4 Egret Wing 4.1.6 1.下载依赖,下载地址https://github.com/egret-labs/egret-game-library/tree/master/tiled 2.新建一个游戏项目Tank 3.将上面包含tiled库的libsrc文件夹 ...
分类:其他好文   时间:2020-01-26 11:43:44    阅读次数:345
Android基础——高级UI组件:下拉框,列表,滚动条视图
布局文件 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android ...
分类:移动开发   时间:2020-01-25 22:00:31    阅读次数:116
解决python pip安装模块时下载太慢
pip install XXX -i https://pypi.tuna.tsinghua.edu.cn/simple XXX为模块名,切换成清华大学下载源,下载直接提高无数倍 ps: 也可以切换国内其他源 -- 豆瓣:https://pypi.douban.com/simple -- 阿里:htt ...
分类:编程语言   时间:2020-01-25 13:00:13    阅读次数:117
python3 切换下载源
pip默认的是源是国外的,网络不好的话,等死个人,还经常中断。所以最好切换成国内的源 1 更改默认的下载源 pip config set global.index-url https://mirrors.aliyun.com/pypi/simple 我用的是阿里云的。速度各方面都不错 2 临时变更下 ...
分类:编程语言   时间:2020-01-24 18:56:20    阅读次数:141
C# 控制台应用 实现 2048游戏
C# 控制台应用 实现 2048游戏 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Game ...
分类:Windows程序   时间:2020-01-24 15:51:31    阅读次数:122
11903条   上一页 1 ... 91 92 93 94 95 ... 1191 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!