Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 242 Bytes

File metadata and controls

16 lines (10 loc) · 242 Bytes

84.Factorial Trailing Zeroes

Description

Given an integer n, return the number of trailing zeroes in n!.

Example 1

Input: 5
Output: 1

From

LeetCode