leetcode 441.排列硬币(python)

Posted xiaotongtt

tags:

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

1.题目描述

你总共有 n 枚硬币,你需要将它们摆成一个阶梯形状,第 k 行就必须正好有 k 枚硬币。

给定一个数字 n,找出可形成完整阶梯行的总行数。

n 是一个非负整数,并且在32位有符号整型的范围内。

示例 1:

n = 5

硬币可排列成以下几行:
¤
¤ ¤
¤ ¤

因为第三行不完整,所以返回2.
示例 2:

n = 8

硬币可排列成以下几行:
¤
¤ ¤
¤ ¤ ¤
¤ ¤

因为第四行不完整,所以返回3.

2. 代码

class Solution:
    def arrangeCoins(self, n: int) -> int:
        if n==0:
            return 0
        count = 0
        for i in range(n):
            row = i
            count = count + row + 1
            if count > n:
                return i
            if count == n:
                return i+1

 

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

LeetCode--441--排列硬币

leetcode 441. 排列硬币(Arranging Coins)

leetcode441. 排列硬币

[LeetCode] 441. Arranging Coins 排列硬币

leetcode打卡--441. 排列硬币

Leetcode刷题100天—441. 排列硬币(数学)—day62