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. 排列硬币模拟的主要内容,如果未能解决你的问题,请参考以下文章