Refactor the print_question function into a method of the Question class in the common module.
Current state: print_question is a standalone function
Desired state: Question class method that handles question display logic
This will improve code organization, reusability, and maintainability across the application. Ensure all references to the old function are updated accordingly.
Refactor the
print_questionfunction into a method of the Question class in the common module.Current state:
print_questionis a standalone functionDesired state: Question class method that handles question display logic
This will improve code organization, reusability, and maintainability across the application. Ensure all references to the old function are updated accordingly.