My LeetCode grinding. Trying to do a problem a day.
您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
12345678910111213 |
- #!/bin/bash
-
- cd problems
- for f in */; do
- dir=${f%*/}
- if [ -d ${dir} ]; then
- echo ""
- echo "Running Problem: $dir"
- cd $dir
- ./run.sh
- cd ..
- fi
- done
|