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.

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