Add pseudocode

This commit is contained in:
Anthony Wang 2020-08-31 21:17:35 -05:00
parent d787b142e1
commit ffca1dcdc0
No known key found for this signature in database
GPG key ID: DCDAC3EF330BB9AC

20
test.txt Normal file
View file

@ -0,0 +1,20 @@
Comment: Pseudocode
define gcd(a, b)
if b > 0
return gcd(b, a mod b)
else
return a
print "test"
N = 1000
A = []
for i from 0 to N - 1
A[i] = i
ans = 0
for i in A
for j in A
ans = gcd(i, j) + ans
print ans