-
[알고리즘] FactorialArchive/CS & App 2022. 5. 4. 21:13728x90
Factorial
팩토리얼 또는 계승은 그 수보다 작거나 같은 모든 양의 정수의 곱
n! = n * (n-1) * (n-2) ﹒﹒﹒ 2 * 1
// Algorithm/Factorial // // Created by Yongwoo Marco on 2022/05/04. // func factorial(_ n: Int) -> Int { return (1...n).reduce(1) { $0 * $1 } }
Reference By raywenderlich/swift-algorithm-club
728x90'Archive > CS & App' 카테고리의 다른 글
[Book] 오브젝트 - 01. 객체, 설계 (Object Oriented) (0) 2022.05.05 [Book] 오브젝트 - 00. 들어가며 (Object Oriented) (0) 2022.05.04 [자료구조] Graph - Minimum Spanning Tree, Kruskal, Prim (0) 2021.06.26 [자료구조] Graph - 그래프 탐색 방법 (0) 2021.06.26 [자료구조] Graph - 그래프 개념, 인접행렬, 인접리스트 구현 (0) 2021.06.26