My LeetCode grinding. Trying to do a problem a day.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

all.sh 115B

12345678910
  1. #!/bin/bash
  2. for f in *; do
  3. if [ -d ${f} ]; then
  4. echo "Running Problem: $f"
  5. cd $f
  6. ./run.sh
  7. cd ..
  8. fi
  9. done