-
Regular Expression
Reference: Regular Expressions Tutorial Regular expressions is a sequence of characters that forms a search pattern and own common shortands regex or regexp. Engines are programs that can process... -
CS 61A: Structure and Interpretation of Computer Programs
About this coursePure functions have some input (arguments) and return some output (result of applying them). A pure function must always return the same value when called twice with same arguments... -
CS 61B: Data Structures and Algorithms
Something About JavaTo run code in file.java, we should firstly compile the .java file into a .class file by command of javac file.java and then run java file. Why we use .class file? .class file a... -
2025 Summer Plan
CS 61A: Structure and Interpretation of Computer Programs2024 Fall Course Agenda Archive Textbook Textbook 10 / 22[2.3] -> [2.4] Lab 5 / 13[04] -> [05] Discussion 5 / 13[04] -&... -
Notes on Git
One of explorations in winter holiday is learning the usage of git by Learn Git Branching, which provides a visualized way to learn. Introduction to git commitsCommitsA commit in a git repository r... -
C++ Review
This is a document I organized while reviewing for my C++ final exam, focusing only on the key points. IntroductionThe three characteristics of algorithms: clear representation (unambiguous), effec...
1