加载中
解 数独 sudoku

from beautifultable import BeautifulTable chess = [ [5, 7, 0, 1, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 7, 0, 0, 0, 8, 0], [3, 0, 4, 0, 0, 9, 0, 7, 0], [......

2022/04/22 13:40
25
学生信息管理系统

"""学生信息管理系统设计 p1:主函数设计 录入 insert() 查找 search() search_name search_number 删除 delete() delete_name delete_number 修改......

2022/04/22 13:38
58
numpy与ndarray

和标准python中列表的对比 可以用来存储和处理大型矩阵,比Python自身数据结构更高效紧凑 内存空间更紧凑 面向数组的运算 ndarray,matrix表达一二维数据时候通用,但是可能出不同的结果,不...

2022/04/22 12:49
29
8086汇编学习 :无符号字节序列中的最大值和最小值并显示出来

(3) 求无符号字节序列中的最大值和最小值 设有一字节序列, 存放在数据段BUF, 长度为 08h。利用子程序的方法编程求出该序列中的最大值和最小值 (4) 调用实验(2)中的HEX2ACSII 与DISPLAY函数...

hex
2022/03/19 22:56
1.5K
8086汇编学习 :16进制到ACSII码的转换

(1)通过查表的方法实现十六进制数转换为 ASCII 码。 XLAT : DS:[BX+AL]为地址,提取存储器中的一个字节再送入AL (2)在实验(1) 的基础上设计2个函数 HEX2ACSII 与DISPLAY 分别实现 以及打...

hex
2022/03/19 21:48
1.5K
8086汇编学习 :小写变换为大写形式输出

由键盘输入一个字母的小写形式,将其变换为大写形式输出。 要求 1、将程序设计为一个循环结构可以不停的对输入字符进行转换 2、设置一个终止字符‘#’当输入时可以停止转换 3、 可以对输入数...

2022/03/14 23:19
583
codecombat zone-of-danger

var enemies = this.getEnemies(); var nearestEnemy = null; // TODO: Find the nearest enemy with the distanceTo method. var nearest = enemies[0]; var shortestDistance = this.dist...

2014/05/25 21:08
118
codecombat emphasis-on-aim

// The following runs whenever the tower needs // something to do. var unit = this.getNearestCombatant(); if (unit) { this.say('Perish, ' + unit.id + ' of the ' + unit.team...

2014/05/25 20:17
139
codecombat

this.moveRight(); this.bustDownDoor(); // Delete the "//" in front of each line below. this.moveRight(); this.say("Hey there!"); this.moveLeft(); this.moveLeft(); this.say("Att...

2014/05/25 20:01
6.1K
codecombat hunter-triplets

// This spell runs once per frame. var enemy = this.getNearestEnemy(); if (!enemy) return; this.say("Die, " + enemy.id + "!"); this.setTarget(enemy); this.setAction("move")...

2014/05/25 19:56
111
qsort实现

突然想起来写个快排吧

2014/05/10 21:35
149
扫雷(windows xp winmine)内存读取

扫雷,内存读取,OD

2014/04/13 22:00
507
freescale舵機控制

#include "common.h" #include "include.h" #define S3010_FTM FTM1 #define S3010_CH FTM_CH0 #define S3010_HZ (100) /*! * @brief main函数 * @since v5...

2014/04/07 22:26
169
摁鍵控制

key_check 带延时消抖

2014/03/13 12:55
27
使用LCD小液晶

畫實心正方形,顯示字符串,數字,動態擦除顯示數字 128x128小液晶

2014/03/13 12:03
198

没有更多内容

加载失败,请刷新页面

返回顶部
顶部