441. 排列硬币

Posted panweiwei

tags:

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

技术图片
技术图片
技术图片

class Solution(object):
    def arrangeCoins(self, n):
        """
        :type n: int
        :rtype: int
        """
        return int(2 ** 0.5 * (n + 1 / 8) ** 0.5 - 1 / 2)

if __name__ == ‘__main__‘:
    solution = Solution()
    print(solution.arrangeCoins(5))



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

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

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

441. 排列硬币

441. 排列硬币

441. 排列硬币模拟

leetcode 441.排列硬币(python)