diff options
author | Anthony Wang | 2020-09-16 11:13:36 -0500 |
---|---|---|
committer | Anthony Wang | 2020-09-16 11:13:36 -0500 |
commit | 4080aefb0ee4d482e42dc2d949feca7c241bf6ec (patch) | |
tree | 2d851a4cbdb533ff0e1b092c5e5557276389010d | |
parent | 0ee764d6429b375e848f656b02a744df17fa71a2 (diff) |
Add test.sh
-rwxr-xr-x | test.sh | 29 |
1 files changed, 29 insertions, 0 deletions
@@ -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 |