My LeetCode grinding. Trying to do a problem a day.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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