Contents
smallest_factorial_from_bound()
Given a positive integer ‘bound’ it returns the largest integer n such that n! <= bound.
bound (int) – A positive integer.
int
The largest integer n such that n! <= bound.