2001. Number of Pairs of Interchangeable Rectangles - Medium
前往題目
想法
- 只能往後找相同ratio
思路
關鍵點是遇到當前ratio
,直接加上之前走過的相同ratio
數量
- 走過所有
num
- 計算當前
ratio
- 加上這個
ratio
的數量(因為是往前搭配),並且更新此ratio
的數量
還有另一種做法是利用數學公式,但那樣就太specific
的解法,所以選擇general
的
Code
2001. Number of Pairs of Interchangeable Rectangles - Medium
https://f88083.github.io/2024/05/30/2001-Number-of-Pairs-of-Interchangeable-Rectangles-Medium/