Content deleted Content added
Phil Boswell (talk | contribs) m →Perl golf: <source> |
Phil Boswell (talk | contribs) m →Python version: <source> |
||
Line 36:
The following Python version of the algorithm uses the common Python idiom of using a list instead of an array, (although there is an array module available):
<source lang=python>
def f(t):
return sqrt(abs(t))+5*t**3 </source>
==References==
|