172. Factorial Trailing Zeroes class Solution: def trailingZeroes(self, n: int) -> int: # 펙토리알 구하는게 아니라. # 펙토리알 구해서 끝부분의 0의 개수 구하는.. if not n: return 0 def factorial(n): if n ==1: return 1 return n * factorial(n-1) fac = factorial(n) zero_cnt = 0 while (fac % 10 == 0): zero_cnt += 1 ..