I am new to python and I found there is a @cache decorator in functools. We know that, for dynamic programming, we need an array or hash for memorization. By using @cache, we can skip the whole part of memorization and let the built-in function do all the job.
Is it actually acceptable in an interview?