逆向走迷宫脚本
摘要:
逆向走迷宫脚本 呜哇 import re dx = [0, 0, -1, 1] dy = [-1, 1, 0, 0] directions = ["w", "s", "a", "d"] # 分别对应x坐标的wsad def map_input(lenx): mapray = [] n = 0 out 阅读全文
posted @ 2024-04-01 13:50 aster_ist 阅读(36) 评论(0) 推荐(0) 编辑