-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprocess_java_samples.sh
More file actions
executable file
·32 lines (32 loc) · 1.13 KB
/
Copy pathprocess_java_samples.sh
File metadata and controls
executable file
·32 lines (32 loc) · 1.13 KB
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
32
/usr/bin/python3 generate_ahk.py \
-i samples/java/println_format.java\
-o output/java/println_format.ahk\
-m leetcode-editor -n 'println_format'
/usr/bin/python3 generate_ahk.py \
-i samples/java/println.java\
-o output/java/println.ahk\
-m leetcode-editor -n 'println'
/usr/bin/python3 generate_ahk.py \
-i samples/java/BinarySearch.java\
-o output/java/BinarySearch.ahk\
-m leetcode-editor -n 'BinarySearch'
/usr/bin/python3 generate_ahk.py \
-i samples/java/BinarySearchFirst.java\
-o output/java/BinarySearchFirst.ahk\
-m leetcode-editor -n 'BinarySearchFirst'
/usr/bin/python3 generate_ahk.py \
-i samples/java/BinarySearchLast.java\
-o output/java/BinarySearchLast.ahk\
-m leetcode-editor -n 'BinarySearchLast'
/usr/bin/python3 generate_ahk.py \
-i samples/java/DisjointSets.java\
-o output/java/DisjointSets.ahk\
-m leetcode-editor -n 'DisjointSets'
/usr/bin/python3 generate_ahk.py \
-i samples/java/Trie.java\
-o output/java/Trie.ahk\
-m leetcode-editor -n 'Trie'
/usr/bin/python3 generate_ahk.py \
-i samples/java/countingSort.java\
-o output/java/countingSort.ahk\
-m leetcode-editor -n 'countingSort'