show/hide this revision's text 3 deleted 9 characters in body

34 in python:

def f(n):return n and n*f(n-1)or 1

34 in C( #, ++)::

int f(int n){return n?n*f(n-1):1;}
show/hide this revision's text 2 added 78 characters in body

34 in python:

def f(n):return n and n*f(n-1)or 1

34 in C ( #, ++):

int f(int n){return n?n*f(n-1):1;}
show/hide this revision's text 1

34 in python:

def f(n):return n and n*f(n-1)or 1
    Post Made Community Wiki by Community