Changing local variable using recursion
I am using a recursive function implemented in a python class. Am I right that the local variable (passed through the methods attributes) isn’t changing through a recursive change? I have the following tree: example tree My current method is the following: def readSequence(self, linkTable, partTable, seq, element): #clearFlags returns an array of objects with… Read More Changing local variable using recursion