上一页 1 2 3 4 5 6 ··· 12 下一页
摘要: class Solution: def generateParenthesis(self, n: int) -> List[str]: if n==1: return ['()'] if not n: return None stack,res,l,r=[],[],[],[] for _ in ra 阅读全文
posted @ 2023-10-14 16:55 Aneverforget 阅读(7) 评论(0) 推荐(0)
摘要: 一、 二、 伺服电机、变频电机、普通电机之间有什么区别? https://zhuanlan.zhihu.com/p/144324107 三、 四、 五、 六、 七、 伺服电机的控制:https://www.chuandong.com/tech/tech30239.html 手动挡汽车熄火原因是什么 阅读全文
posted @ 2023-09-27 14:32 Aneverforget 阅读(46) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2023-09-27 14:27 Aneverforget 阅读(14) 评论(0) 推荐(0)
摘要: Qt的简单使用: https://www.cnblogs.com/carsonzhu/p/10815654.html 一个案例: 图像处理仿真平台 https://blog.csdn.net/qq_37340229/article/details/128685044 该系统主要针对医学 超声图像进行 阅读全文
posted @ 2023-09-27 14:10 Aneverforget 阅读(34) 评论(0) 推荐(0)
摘要: 一、 https://blog.csdn.net/CH_monsy/article/details/108001875 二、 三、 https://zhuanlan.zhihu.com/p/83598756 : 四、 五、 六: 七、 八、 一、安装ubuntu18.04 1、Ubuntu18.04 阅读全文
posted @ 2023-09-27 13:57 Aneverforget 阅读(26) 评论(0) 推荐(0)
摘要: class Solution: def simplifyPath(self, path: str) -> str: li=path.split("/") res=[] for i in li: if i=='..' and res: res.pop() if i!='.' and i!='..' a 阅读全文
posted @ 2023-09-17 17:19 Aneverforget 阅读(8) 评论(0) 推荐(0)
摘要: class Solution: def canCompleteCircuit(self, gas: List[int], cost: List[int]) -> int: n=len(gas) max_gas=0 rest=0 records=[] start=0 for i in range(n) 阅读全文
posted @ 2023-09-17 15:47 Aneverforget 阅读(6) 评论(0) 推荐(0)
摘要: 福昕高级PDF编辑器安装激活教程(绝对免费)_哔哩哔哩_bilibili 萝卜官网补丁下载:https://www.carrotchou.com/1593.htmlUP的网盘下载:链接:https://pan.baidu.com/s/1VKMsjqlb-K9KySS3HGdlhA 提取码:5gt4 阅读全文
posted @ 2023-09-07 13:40 Aneverforget 阅读(101) 评论(0) 推荐(0)
摘要: Python3中的保留字(关键字) | AmosCloud Wiki 阅读全文
posted @ 2023-09-06 15:04 Aneverforget 阅读(80) 评论(0) 推荐(0)
摘要: 4.4 Python类的高级特性 | AmosCloud Wiki 阅读全文
posted @ 2023-09-06 15:02 Aneverforget 阅读(22) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 12 下一页