Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Apprendre Challenge: Memoization Decorator | Decorator Practice Lab
Python Decorators Explained

bookChallenge: Memoization Decorator

Tâche

Swipe to start coding

Write a decorator that caches the results of a function based on its arguments to avoid redundant calculations.

  • The decorator must store the result of a function call using its positional and keyword arguments as the cache key.
  • When the function is called again with the same arguments, the cached result must be returned instead of recomputing it.
  • The decorator must work for functions with any number of positional and keyword arguments.

Solution

Tout était clair ?

Comment pouvons-nous l'améliorer ?

Merci pour vos commentaires !

Section 4. Chapitre 2
single

single

Demandez à l'IA

expand

Demandez à l'IA

ChatGPT

Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion

close

bookChallenge: Memoization Decorator

Glissez pour afficher le menu

Tâche

Swipe to start coding

Write a decorator that caches the results of a function based on its arguments to avoid redundant calculations.

  • The decorator must store the result of a function call using its positional and keyword arguments as the cache key.
  • When the function is called again with the same arguments, the cached result must be returned instead of recomputing it.
  • The decorator must work for functions with any number of positional and keyword arguments.

Solution

Switch to desktopPassez à un bureau pour une pratique réelleContinuez d'où vous êtes en utilisant l'une des options ci-dessous
Tout était clair ?

Comment pouvons-nous l'améliorer ?

Merci pour vos commentaires !

Section 4. Chapitre 2
single

single

some-alt