4 lines
238 B
Bash
4 lines
238 B
Bash
mkdir {A..M}
|
|
alias solve='g++ main.cpp -o main -g -fsanitize=undefined,address -fno-omit-frame-pointer -Wall -Wextra && echo "Compile Done" && time ./main'
|
|
alias fast='g++ main.cpp -o main -O2 -Wall && echo "Compile Done" && time ./main'
|