Understanding a memoized Fibonacci function

后端 未结 0 1731
梦毁少年i
梦毁少年i 2021-02-19 00:13

The function, taken from here:

function fib(n,memo) {
   memo = memo || {}
   if (memo[n]) {
      return memo[n]
   }
   if (n <= 1) {
      return 1
   }
            


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题