1 | mediainfo --Inform="Audio;\n%Duration%" . | awk '{a+=$1}END{print a/60000}' |
Maven 安装第三方 JAR 包
发表于
1 | mvn install:install-file \ |
https://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html
处理 Archlinux 报错
发表于
leetcode-20.有效的括号
发表于
分类于
leetcode
题目链接
代码
1 | class Solution { |
复杂度分析
- 时间复杂度: O(N)
- 空间复杂度: O(n+∣Σ∣)
leetcode-3.无重复字符的最长子串
发表于
分类于
leetcode
题目链接
代码
1 | class Solution { |
复杂度分析
- 时间复杂度: O(N)
- 空间复杂度: O(count) count 为字符集数量