TPK algorithm: Difference between revisions

Content deleted Content added
Ricvelozo (talk | contribs)
Line 89:
<syntaxhighlight lang="python" line>
from math import sqrt
 
 
def f(t):
return sqrt(abs(t)) + 5 * t ** 3
 
 
a = [float(input()) for _ in range(11)]