Implementing karatsuba recursion function in python class, errors
问题 Previously I posted a question on this subject and it was answered quite well. Implementing merge sort function in python class, errors And yet there is still something that escapes me about recursion in a class. In the linked problem above, if I added prefixive self. to the recursion subroutine, I get the exact same error that is produced below in the class output (third block of code in this post). I understand why this happens; object.karatsuba() only takes self as its input, and yet the