61

CS61A_Project2_Cat

Problem 6 题目描述: 注意事项: 1.不能使用for while循环 2.达到limit时,必须立即返回,不能继续递归 代码: 1.我的代码,很繁琐 1 def shifty_shifts(start, goal, limit): 2 """A diff function for auto ......
A_Project Project Cat CS 61

CS61A_HW04

Q6 题目描述: Write a function has_path that takes in a tree t and a string phrase. It returns True if there is a path that starts from the root where the ......
A_HW CS 61 04 HW

java.lang.UnsupportedClassVersionError: (class file version 61.0), this version of the Java Runtime only recognizes 52

问题背景,新建5个springboot modules。使用相同的依赖 pom.xml 文件。其中 4 个工程正常启动。有一个如图:GulimallWareApplication 跑不起来。报错版本不对。 本人机器上只配置了 1.8 的jdk。所以很纳闷。原以为是不是新版本 idea 自带(刚刚下载 ......

CS61B学习笔记_Project0

1 Game Rules 1. 4x4网格,每个位置为空或者填有带有一个2的正整数次幂数字的贴图; 2. 第一次移动前,随机选择一个空位填入带有数字2或4的贴图,其中填充2的概率为75%,填充4的概率为25%; 3.用户可以通过方向键选择一个方向(上下左右)来倾斜(tilt)该网格,所有的贴图都在这 ......
Project0 Project 笔记 61B CS

CS61B学习笔记_Lecture4 References, Recursion, and Lists

还是得先熟悉java的语法规则,准备先回归CS61B了。。。 Bits: 计算机将信息储存为内存,用bits(0或1)序列表示这些信息。(一般简写为“b”,注意不要与字节Byte搞混,字节一般用“B”,一个英文字符一般是1个字节,一个中文字符一般是2B) 原始数据类型(Primitive Type) ......
References Recursion Lecture4 Lecture 笔记