Ask your own question, for FREE!
MIT 6.00 Intro Computer Science (OCW) 16 Online
OpenStudy (anonymous):

Problem set 3: recursion. Does anyone know how to operate a counter in a recursive function? Normally I'd use: counter=0 blah blah counter=counter+1 However in a recursive function this would reset the counter to zero. I can return a +1, but I'd prefer to return a total. Any ideas? - thanks

OpenStudy (anonymous):

You can do something like passing a counter as an argument (using a default value at initialization). Like this: http://codepad.org/AhHSF3nK This is just a template, there are other ways to do this.

OpenStudy (anonymous):

thanx

OpenStudy (carlsmith):

You can increment a global variable with the global keyword. You will often increment or decrement the variable by passing an appropriate expression in the recursive call, i.e. def f(n): if n == 2: return 2 else: return n * f(n - 1) f(52)

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!