Initial release

This commit is contained in:
Francois JUMELLE
2021-05-03 22:32:40 +02:00
commit 20526d93c8
928 changed files with 452368 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
input = [174, 28, 27, 479, 401, 291]
x = 13
for i in range(0, max(input)+1):
lat = x%8+2
long = x%11+44
x = (16807*x)%4294967295
if i in input:
print(i, x, lat, long, "46°34'{}''".format(lat), "0°22'{}''".format(long))