leetcode-823-Binary Trees With Factors

Error:

  1. do not use dp to solve it, dp[i] = sum(dp[j] * dp[i / j]) j < i

你可能感兴趣的:(算法)