441. 排列硬币模拟

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了441. 排列硬币模拟相关的知识,希望对你有一定的参考价值。


https://leetcode-cn.com/problems/arranging-coins/

class Solution {
public:
    int arrangeCoins(int n) 
    {
        int cnt=0,i=1;
        while(n>=i) cnt++,n-=i,i++;
        return cnt;
    }
};

以上是关于441. 排列硬币模拟的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode--441--排列硬币

LeetCode刷题441-简单-排列硬币

LeetCode 441 排列硬币[数学] HERODING的LeetCode之路

441. 排列硬币

441. 排列硬币

leetcode 441.排列硬币(python)