[LeetCode]Clumsy Factorial
·
SW개발/코딩테스트
https://leetcode.com/problems/clumsy-factorial/ LeetCode - The World's Leading Online Programming Learning Platform 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 문제 분석 Factorial의 연산을 * / + - 연산자를 순서대로 rotation하면서 계산한 결과를 구하는 문제입니다. 처음 시도한 답안 class Solution: def clumsy(self, n: int) -> int..