03 2022 档案
摘要:https://blog.csdn.net/RUIMENG061511332/article/details/90634242 https://www.cnblogs.com/renshengruxi/p/11095167.html
阅读全文
摘要:1 首先安装 brew 参考: https://blog.csdn.net/yuanshangshenghuo/article/details/106599836 2 然后配置 .bash_profile中添加 export LDFLAGS="-L/usr/local/opt/openssl/lib
阅读全文
摘要:#二分法 def erfenfa(lis,target): start,end=0,len(lis)-1 while True: if end-start<=1: if target==lis[start]: return start elif target==lis[end]: return en
阅读全文