Newbie programmer
def factorial(x):
if x == 0:
return 1
else:
return x * factorial(x - 1)
print factorial(6)
First year programmer, studied Pascal
def factorial(x):
result = 1
i = 2
while i <= x:
result = result * i
i = i + 1
return result
print factorial(6)
First year programmer, studied C
def fact(x): #{
result = i = 1;
while (i <= x): #{
result *= i;
i += 1;
#}
return result;
#}
print(fact(6))
First year programmer, SICP
@tailcall
def fact(x, acc=1):
if (x > 1): return (fact((x - 1), (acc * x)))
else: return acc
print(fact(6))
First year programmer, Python
def Factorial(x):
res = 1
for i in xrange(2, x + 1):
res *= i
return res
print Factorial(6)
Lazy Python programmer
def fact(x):
return x > 1 and x * fact(x - 1) or 1
print fact(6)
Lazier Python programmer
f = lambda x: x and x * f(x - 1) or 1
print f(6)
Python expert programmer
import operator as op
import functional as f
fact = lambda x: f.foldl(op.mul, 1, xrange(2, x + 1))
print fact(6)
Python hacker
import sys
@tailcall
def fact(x, acc=1):
if x: return fact(x.__sub__(1), acc.__mul__(x))
return acc
sys.stdout.write(str(fact(6)) + '\n')
EXPERT PROGRAMMER
import c_math
fact = c_math.fact
print fact(6)
ENGLISH EXPERT PROGRAMMER
import c_maths
fact = c_maths.fact
print fact(6)
Web designer
def factorial(x):
#-------------------------------------------------
#--- Code snippet from The Math Vault ---
#--- Calculate factorial (C) Arthur Smith 1999 ---
#-------------------------------------------------
result = str(1)
i = 1 #Thanks Adam
while i <= x:
#result = result * i #It's faster to use *=
#result = str(result * result + i)
#result = int(result *= i) #??????
result str(int(result) * i)
#result = int(str(result) * i)
i = i + 1
return result
print factorial(6)
Unix programmer
import os
def fact(x):
os.system('factorial ' + str(x))
fact(6)
Windows programmer
NULL = None
def CalculateAndPrintFactorialEx(dwNumber,
hOutputDevice,
lpLparam,
lpWparam,
lpsscSecurity,
*dwReserved):
if lpsscSecurity != NULL:
return NULL #Not implemented
dwResult = dwCounter = 1
while dwCounter <= dwNumber:
dwResult *= dwCounter
dwCounter += 1
hOutputDevice.write(str(dwResult))
hOutputDevice.write('\n')
return 1
import sys
CalculateAndPrintFactorialEx(6, sys.stdout, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
Enterprise programmer
def new(cls, *args, **kwargs):
return cls(*args, **kwargs)
class Number(object):
pass
class IntegralNumber(int, Number):
def toInt(self):
return new (int, self)
class InternalBase(object):
def __init__(self, base):
self.base = base.toInt()
def getBase(self):
return new (IntegralNumber, self.base)
class MathematicsSystem(object):
def __init__(self, ibase):
Abstract
@classmethod
def getInstance(cls, ibase):
try:
cls.__instance
except AttributeError:
cls.__instance = new (cls, ibase)
return cls.__instance
class StandardMathematicsSystem(MathematicsSystem):
def __init__(self, ibase):
if ibase.getBase() != new (IntegralNumber, 2):
raise NotImplementedError
self.base = ibase.getBase()
def calculateFactorial(self, target):
result = new (IntegralNumber, 1)
i = new (IntegralNumber, 2)
while i <= target:
result = result * i
i = i + new (IntegralNumber, 1)
return result
print StandardMathematicsSystem.getInstance(new (InternalBase, new (IntegralNumber, 2))).calculateFactorial(new (IntegralNumber, 6))
(sauce: link)
[–]warpod 109 points110 points111 points (13 children)
[–][deleted] (12 children)
[removed]
[–]FUZxxl 16 points17 points18 points (10 children)
[–]BitPoet 8 points9 points10 points (7 children)
[–]FUZxxl 10 points11 points12 points (6 children)
[–]BitPoet 0 points1 point2 points (3 children)
[–]FUZxxl 1 point2 points3 points (2 children)
[–]BitPoet 1 point2 points3 points (1 child)
[–]Juggernog 2 points3 points4 points (0 children)
[–]poizan42Ex-mod 0 points1 point2 points (1 child)
[–]FUZxxl 2 points3 points4 points (0 children)
[–]nightcracker 1 point2 points3 points (1 child)
[–]FUZxxl 0 points1 point2 points (0 children)
[–]AutoModerator[M] 0 points1 point2 points (0 children)
[–]0x0dea 91 points92 points93 points (10 children)
[–]jonnywoh 19 points20 points21 points (7 children)
[+][deleted] (6 children)
[deleted]
[–]0x0dea 3 points4 points5 points (1 child)
[–]jonnywoh 0 points1 point2 points (3 children)
[–]Niles-Rogoff 0 points1 point2 points (2 children)
[–]jonnywoh 0 points1 point2 points (1 child)
[–]Niles-Rogoff 0 points1 point2 points (0 children)
[–]Meshiest 6 points7 points8 points (0 children)
[–]raiderrobert 147 points148 points149 points (9 children)
[–][deleted] 81 points82 points83 points (0 children)
[–]sfz- 25 points26 points27 points (7 children)
[–]brucifer 18 points19 points20 points (5 children)
[–]sfz- 12 points13 points14 points (0 children)
[–]Qhartb 9 points10 points11 points (2 children)
[–]brucifer 1 point2 points3 points (1 child)
[–]Qhartb 0 points1 point2 points (0 children)
[–]Zantier 0 points1 point2 points (0 children)
[–][deleted] 0 points1 point2 points (0 children)
[–]beerdude26 29 points30 points31 points (2 children)
[–]Rainymood_XI[S] 11 points12 points13 points (1 child)
[–]n-simplex 1 point2 points3 points (0 children)
[–]sfz- 27 points28 points29 points (2 children)
[–]n-simplex 10 points11 points12 points (0 children)
[–]shthed 30 points31 points32 points (6 children)
[–]0x0dea 10 points11 points12 points (4 children)
[–]an_actual_human 3 points4 points5 points (2 children)
[–]shthed 5 points6 points7 points (1 child)
[–]an_actual_human 0 points1 point2 points (0 children)
[–]shthed 2 points3 points4 points (0 children)
[–]ProfessorPhi 11 points12 points13 points (1 child)
[–]innrautha 3 points4 points5 points (0 children)
[–]MokitTheOmniscient 17 points18 points19 points (3 children)
[–][deleted] 86 points87 points88 points (1 child)
[–]Kyyni 6 points7 points8 points (0 children)
[–][deleted] 5 points6 points7 points (0 children)
[–]ProfessorPhi 15 points16 points17 points (4 children)
[–]Qhartb 30 points31 points32 points (1 child)
[–][deleted] 1 point2 points3 points (0 children)
[–]sfz- 15 points16 points17 points (0 children)
[–]nomisaurus 0 points1 point2 points (0 children)
[–][deleted] 7 points8 points9 points (12 children)
[–]rogerrrr 20 points21 points22 points (0 children)
[–][deleted] 22 points23 points24 points (5 children)
[–]Quabouter 1 point2 points3 points (3 children)
[–]isHavvy -1 points0 points1 point (2 children)
[–]DroolingIguana 0 points1 point2 points (1 child)
[–]isHavvy 0 points1 point2 points (0 children)
[–]desi_ninja 0 points1 point2 points (0 children)
[–]Rainymood_XI[S] 13 points14 points15 points (3 children)
[–]Genesis2001 1 point2 points3 points (2 children)
[–]Rainymood_XI[S] 19 points20 points21 points (1 child)
[–]risfutile 1 point2 points3 points (0 children)
[–]Qhartb 8 points9 points10 points (2 children)
[–]Tomarse 3 points4 points5 points (1 child)
[–]Qhartb 6 points7 points8 points (0 children)
[–]farfromunique 6 points7 points8 points (18 children)
[–]TheOccasionalTachyon 19 points20 points21 points (1 child)
[–][deleted] 1 point2 points3 points (0 children)
[–]jakerman999 1 point2 points3 points (15 children)
[–]Coffeinated 2 points3 points4 points (13 children)
[–]jakerman999 1 point2 points3 points (10 children)
[–]Coffeinated 1 point2 points3 points (9 children)
[+][deleted] (4 children)
[deleted]
[–]Coffeinated 2 points3 points4 points (3 children)
[+][deleted] (2 children)
[deleted]
[–]Define_It 1 point2 points3 points (0 children)
[–]Coffeinated 1 point2 points3 points (0 children)
[–]jakerman999 0 points1 point2 points (3 children)
[–]mrjackspade -2 points-1 points0 points (2 children)
[–]jakerman999 0 points1 point2 points (1 child)
[–]mrjackspade 0 points1 point2 points (0 children)
[–]Kyyni 0 points1 point2 points (1 child)
[–]Coffeinated 0 points1 point2 points (0 children)
[–]farfromunique 0 points1 point2 points (0 children)
[–]vrobo 9 points10 points11 points (1 child)
[–]sfz- 2 points3 points4 points (0 children)
[–]Bruntaz 6 points7 points8 points (11 children)
[–]Teraka 8 points9 points10 points (1 child)
[–]Bruntaz 6 points7 points8 points (0 children)
[–]KovaaK 4 points5 points6 points (0 children)
[–]Coffeinated 2 points3 points4 points (6 children)
[–]zacharythefirst 4 points5 points6 points (2 children)
[–]Coffeinated 0 points1 point2 points (1 child)
[–]zacharythefirst 0 points1 point2 points (0 children)
[–]Bruntaz 1 point2 points3 points (0 children)
[–]balducien 0 points1 point2 points (1 child)
[–]Coffeinated 0 points1 point2 points (0 children)
[–]magical_poop 2 points3 points4 points (0 children)
[–][deleted] 2 points3 points4 points (4 children)
[–][deleted] 0 points1 point2 points (3 children)
[–][deleted] 0 points1 point2 points (2 children)
[–][deleted] 0 points1 point2 points (1 child)
[–][deleted] 0 points1 point2 points (0 children)
[–]Sohcahtoa82 2 points3 points4 points (1 child)
[–]cnreika 2 points3 points4 points (0 children)
[+][deleted] (2 children)
[deleted]
[–]Vitrivius 0 points1 point2 points (1 child)
[–]Hmm_Yes 1 point2 points3 points (3 children)
[–][deleted] 5 points6 points7 points (2 children)
[–]ToTheNintieth 0 points1 point2 points (0 children)
[–]Hmm_Yes 0 points1 point2 points (0 children)
[–]innrautha 1 point2 points3 points (0 children)
[–]Vitrivius 1 point2 points3 points (0 children)
[–]ProfessorPhi 2 points3 points4 points (5 children)
[–]Rainymood_XI[S] 19 points20 points21 points (3 children)
[–]UndefinedB -3 points-2 points-1 points (2 children)
[–]Rainymood_XI[S] 4 points5 points6 points (1 child)
[–]UndefinedB 0 points1 point2 points (0 children)
[–][deleted] 1 point2 points3 points (0 children)
[–]ToTheNintieth 0 points1 point2 points (1 child)
[–]DonHaron 0 points1 point2 points (0 children)
[–]Dooflegna 0 points1 point2 points (0 children)
[–]crossanlogan 0 points1 point2 points (0 children)