...

/

Challenge: Classes and Meta-classes

Challenge: Classes and Meta-classes

Test your understanding of classes and meta-classes with this coding problem.

We'll cover the following...

Problem

You are required to build a system that automatically measures the execution time of all methods in a class and its subclasses, without manually adding decorators to each method.

Requirements

  1. Function Decorator (time_taken)

    • A function decorator that
...