Home / Questions / Other RecursionError: maximum recursion depth exceeded का समाधान क्या है? कौन सा code pattern सही समाधान है? Other 0 Views Verified RecursionError: maximum recursion depth exceeded का समाधान क्या है? कौन सा code pattern सही समाधान है? #python #error #debugging #exception #solution Sarkari Result QA Bank Editorially reviewed exam information Share
Verified increase recursion blindly increase recursion blindly Additional Explanation यह विकल्प सही समाधान नहीं है।
Verified call the function recursively forever call the function recursively forever Additional Explanation यह विकल्प सही समाधान नहीं है।
Verified remove the base case remove the base case Additional Explanation यह विकल्प सही समाधान नहीं है।
Verified Correct Answer add a correct base case or replace deep recursion with an iterative loop add a correct base case or replace deep recursion with an iterative loop Additional Explanation Infinite/deep recursion रोकने के लिए base case या iteration उपयोग करें।