#For anyone who’s done google, do they
1 messages · Page 1 of 1 (latest)
Not most of them, they just want your thought process in arriving at top down dp from problem, most people have follow ups on the problem itself, more than next steps till tabulation and memory optimization
Mine for one of them asked for bottom up, so I think you should at least generally know how to explain it/how you would do it, but I think most are fine with top down
They'd reject "@cache" solutions though right
They reject on cache? For me I can do tabulation but I need to do memoisation and then only I can do tabulation and space optimisation 🥲
Will it work?
You could always use C++ to avoid the comfort of @cache 😭
I am a Java coder 😶🌫️
i mean id probably just do the normal memo = {} type solution not @cache lol
Why would they reject that do interviewers do that?
Ideally if you have memoization and doing @cache, it would probably be ideal to go to tabulation.
Every other language would have to do it anyway
Can u explain how