Writing fraction in LaTeX use: 1\frac{}{} 第一个{}为分子, 后一个为分母. 2022-08-05 Skills
简单高效LaTeX Notes LaTeX 文档的基本结构一个 LaTeX 文档通常由以下基本要素组成: 文档类别(document class, 文档类别指定了文档的类型,如文章、书籍、报告等。在 LaTeX 中,使用 \documentclass 命令指定文档类别,例如: 1\documentclass{article} 导言区(preamble, 导言区是文档的开头,用于指定文档的全局设置,如页 2022-08-04 LaTeX
Fix the error:UnboundLocalError: local variable num_rolls referenced before assignment 2022-08-03 Errors
算法图解 Notes 第一章1.2 二分查找1.2.2 运行时间如果最多猜测的次数与列表长度相同,这被称为线性时间(linear time). 1.3 大O表示法大O表示法指出了算法有多快. 使用大O表示法, 这个运行时间为O(n). 大O表示法指的并非以秒为单位的速度, 大O表示法让你能够比较操作数,它指出了算法运行时间的增速. O(n), 这里的n为操作数, 之所以称为大O表示法, 是因为操作数前有个大O. 1.3 2022-08-03 Algorithms
Solved: /usr/bin/python3: No module named pip error on Linux 1reference1 manually install pip: 12wget https://bootstrap.pypa.io/get-pip.pysudo python3 get-pip.py In Debian distributions: 123sudo apt-get install python-pip ##for python2sudo apt-get install pyth 2022-08-01 Errors
电路分析导论 Chapter 1 绪论1.3 测量单位与单位制米最初被定义为沿海平面从地球赤道到地球南极或北极距离的一千万分之一。 现在的米是参照真空中的光速定义的,光速为299792458m/s. 千克定义为1cm^3纯净水在4oc时质量的1000倍. 秒最初的定义为平均太阳日的86400分之一. 1967年, 秒被重新定义为铯原子电磁辐射(能级跃迁)周期的9192631770倍. Chapter 2022-08-01 Circuit Analysis
Engineering a compiler Notes Chapter 1 Overview of CompilationCompilers are computer programs that translate a program written in one language into a program written in another language. 1.1 INTRODUCTIONThe compiler has a front e 2022-08-01 Compiler Theory
CS61A Python Notes http://composingprograms.com/pages/13-defining-new-functions.html Chapter 1: Building Abstractions with Functions1.1 Getting Started1.1.4 First ExampleStatement describe actions. statement are not eva 2022-07-31 Python