摘要:
An intuitive DP.class Solution {public: int numSquares(int n) { vector dp(n + 1, INT_MAX); dp[0] = 0; for(int i = 0; i... 阅读全文
posted @ 2015-09-12 08:43
Tonix
阅读(141)
评论(0)
推荐(0)
Tony's LogAlgorithms, Distributed System, Machine Learning |