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