-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcount.sh
More file actions
31 lines (30 loc) · 674 Bytes
/
count.sh
File metadata and controls
31 lines (30 loc) · 674 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
echo "count all problems"
DIR="$(cd "$(dirname "$0")" && pwd -P)"
echo "========================"
cd $DIR/Algospot
sh ./count.sh
echo "========================"
cd $DIR/Baekjoon
sh ./count.sh
echo "========================"
cd $DIR/LeetCode
sh ./count.sh
echo "========================"
cd $DIR/GeeksForGeeks
sh ./count.sh
echo "========================"
cd $DIR/HackerCup
sh ./count.sh
echo "========================"
cd $DIR/KickStart
sh ./count.sh
echo "========================"
cd $DIR/LintCode
sh ./count.sh
echo "========================"
cd $DIR/Samsung
sh ./count.sh
echo "========================"
cd $DIR/CodeForces
sh ./count.sh
echo "========================"