摘要: 题源:LeetCode 链接:https://leetcode-cn.com/problems/perfect-squares 一道比较简单的动态规划: 1 class Solution { 2 public: 3 int numSquares(int n) { 4 vector<int> f(n 阅读全文
posted @ 2021-08-18 19:22 Danae丶 阅读(28) 评论(0) 推荐(0) 编辑