Add test.sh

This commit is contained in:
Anthony Wang 2020-09-16 11:13:36 -05:00
parent 0ee764d642
commit 4080aefb0e
Signed by: a
GPG Key ID: 6FD3502572299774

29
test.sh Executable file
View File

@ -0,0 +1,29 @@
# Bash
gcd() {
if (( $2 > 0 ))
then
echo $( gcd $2 $(( $1 % $2 )) )
else
echo $1
fi
}
echo test
declare -i N=1000
declare -a A
for ((i=0;i<N;i++))
do
A[i]=$i
done
declare -i ans=0
for i in "${A[@]}"
do
for j in "${A[@]}"
do
ans=$(( $(gcd $i $j) + ans ))
done
done
echo $ans