res_branch += branches(t2)[i:]# return the new treereturntree(res_label, res_branch) 然后也介绍了用zip的solution: zip是程序员很喜欢用的abstraction,但是如果之前没学过,一开始会觉得confusing zip只会go through双方都有的branches zip完后剩余落单的branches可以用i = len(res_branches)来做同样的slic...
CS61A fall 2020 HW 01 HW 01: Variables & Functions, Control 这是 CS61A fall 2020 的 hw01 的个人解答,均通过 OK。 Q1: Syllabus Quiz Solution 一份问卷调查,可以不用管。 Q2: A Plus Abs B 这一题要求填充空白部分,使得函数的功能是返回 a… ...
三、学习过程 课程选择:笔者选择的是2020Fall的版本https://inst.eecs.berkeley.edu/~cs61a/fa20/(其他版本修改后缀即可)个人比较推荐的是20fa和21fa的版本,讲师都是John DeNero,John DeNero的发音标准,而且语速偏慢,不用太担心听不懂的问题。而且他的讲课也很有意思,笔者印象最深的是他在讲到data abstraction...
这是CS61A fall 2020 的 hw01 的个人解答,均通过 OK。 CS 61A Fall 2020inst.eecs.berkeley.edu/~cs61a/fa20/hw/hw01/ Q1: Syllabus Quiz Solution 一份问卷调查,可以不用管。 Q2: A Plus Abs B 这一题要求填充空白部分,使得函数的功能是返回 a 加上 b 的绝对值的和。 从最后一行return f(...
In my opinion , it's ok when you are facing operation or solution. But if you are focus on the structure and logic ,it's better for you to divide it especially in a complex project. So the way I think might be like: I want to generate golden rate -> How? -> Use approach mean...
sgal's solution for CS 61A, Summer 2019, most of which in one line pythonschemecs61asicpuc-berkeley UpdatedOct 8, 2019 Python cy-Yin/UCBerkeley-CS61A-Fall2023 Star21 This repo contains all the materials and solutions of UC Berkeley CS 61A fall semester 2023 ...
同时,我也收集我自学这门课的资料,包括全部的slides,带有注解的作业,实验, project solution,离线,...
同时,我也收集我自学这门课的资料,包括全部的slides,带有注解的作业,实验, project solution,离线,在线版的中文笔记。 如果你需要的话,可以点击下方的链接进行查看。 祝你玩的开心! CS61a 自学资料github.com/lbx73737373/CS61a-2020fall 在线CS61a 中文笔记 peat-way-a5d.notion.site/CS61A-Structure...
一道题不建议想过多的时间,如果不会就直接去看GitHub上其他人的solution或者官方的solution,非常非常非常建议看官方的solution,简洁,美观,有数学的韵味(笔者的GitHub上有官方的solution,链接放这里:half-dreamer/CS61A-20fa下的CS61A 2020 FALL all-solution ...
Implementadd_chars, which takes inw1andw2, wherew1is a substring ofw2. This means thatw1is shorter thanw2. It should return a string containing the characters you need to add tow1to getw2.Your solution must use recursion. In the example above, you need to add the characters "aborb" to...