441. Arranging Coins - Easy 前往題目 想法 循環扣除每行所需硬幣 思路 同想法 這題還能用binary search做,但反而就變困難了 CodeNeetcode大大用BS做的 class Solution { public int arrangeCoins(int n) { int i = 1; // row // Until used all the coins while (n > 0) { ++i; // Increase the row n -= i; // Decrease n by row } return i - 1; } } Leetcode > Easy #Leetcode #心得 #Math #Binary Search 441. Arranging Coins - Easy https://f88083.github.io/2024/09/04/441-Arranging-Coins-Easy/ 作者 Simon Lai 發布於 2024年9月4日 許可協議 xbox series手把蘑菇頭飄移修復方法 上一篇 341. Flatten Nested List Iterator 下一篇 Please enable JavaScript to view the comments