Edit this page Backlinks This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Playground ====== <code python> def f (v, x): n = len(v) if n == 0: return 1 return x*f(v[0,n/2], x-1) </code>