TPK algorithm: Difference between revisions

Content deleted Content added
Algorithm in Python
m Python version: ==> their to there
Line 34:
 
==Python version==
The following Python version of the algorithm uses the common Python idiom of using a list instead of an array, (although theirthere is an array module available):
 
from math import sqrt
Line 48:
else:
print i,y
 
 
==References==