摘要:
二分查找 a=[1,3,5,7,9] # 序列 k=3 # 目标 l=0 # 开头(注意,是索引号) r=4 # 结尾(注意,是索引号) while l+1!=r: # 是否只剩一个 mid=int((l+r)//2) # 中间(注意,是索引号) if a[mid]<k: # 小于目标 l=mid 阅读全文
摘要:
重启 Windows 阅读全文
摘要:
Jupyter Notebook 如何让输出的内容存放到文件中 How to Save the Output of a Cell as a Text File in Jupyter https://discourse.jupyter.org/t/is-there-a-way-to-save-the- 阅读全文
摘要:
ImportError: libcrypto.so.3: cannot open shared object file: No such file or directoryBuilding wheel for pysam (pyproject.toml) ...https://github.com/ 阅读全文
摘要:
https://www.cnblogs.com/zhenghb31/p/15046496.html 市面上控制器这么多,似乎每一个都很厉害…为什么有的控制器编写起来那么难,功能很少,有的简单易学,功能强大呢?各种控制器又有什么区别呢?经过我的思考,我个人把控制器分为三类! 第一类: 基于逻辑电路的控 阅读全文
摘要:
[ ~/software]$ condaTraceback (most recent call last): File "/ppp/software/Anaconda3.8/bin/conda", line 15, in <module> sys.exit(main()) File "/ppp/so 阅读全文
摘要:
wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-2020.11-Linux-x86_64.sh --2023-10-17 21:36:56-- https://mirrors.tuna.tsinghua.edu 阅读全文