So, to be clear: PythonAnywhere will kill programs that grow beyond a certain rate? As in a put the values of a list through a function that increases the number of elements in the list as a function of those already existing elements:
[1,2] -> [1-1,1+1,2-1,2+1]: [0,2,1,3] -> [0-1,0+1,2-1,2+1,1-1,1+1,3-1,3+1]: [-1,1,1,3,0,2,2,4], etc....
The size in the above increases as a series 2,4,8,16, etc.... The function that I'm using increases the list size by about 3 times each iteration. So its size increases by (original size)*3^i where i is the number of iterations, so I guess you could consider it even steeper than an exponential function.
Why is this a problem for pythonanywhere? What changes can I make to my program so you guys don't automatically terminate it? It hasn't been a problem with other programs that I've used. Thanks!