Algorithnm/LeetCode
[LeetCode]172번 : Factorial Trailing Zeroes
문제 링크: leetcode.com/problems/factorial-trailing-zeroes/ Factorial Trailing Zeroes - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 접근 방식: 팩토리얼은? n! = n * (n-1) * (n-2) * .... (n-(n-1)) 남은 정수가 1이 될 때까지 곱합니다. ex) 5! = 1 * 2 * 3 * 4 * 5 문제에서는 0의 개수를 묻고 있습니다. 2 * 5 = 10을 활용하면 됩니다. 이는 ..
2020. 12. 18. 23:57
최근댓글