perfectsquare
含有「perfectsquare」共 1 篇內容
全部內容
發佈日期由新至舊
付費限定
小松鼠的演算法樂園
2024/02/08
一題多解 用DP、BFS去解 Pefect Square 完全平方數的化簡_Leetcode #279
題目敘述 給定一個正整數n,請找出最少用幾個完全平方數,可以讓他們的總和為n? 例如 n=12,最少用3個完全平方數就可讓他們的總和為n,因為12 = 4 + 4 + 4 題目的原文敘述 測試範例 Example 1: Input: n = 12 Output: 3 Explanat
#
leetcode
#
python
#
algorithm
6
2