Skip to content

Latest commit

 

History

History
50 lines (27 loc) · 795 Bytes

README_EN.md

File metadata and controls

50 lines (27 loc) · 795 Bytes

中文文档

Description

Write an algorithm which computes the number of trailing zeros in n factorial.

Example 1:

Input: 3

Output: 0

Explanation: 3! = 6, no trailing zero.

Example 2:

Input: 5

Output: 1

Explanation: 5! = 120, one trailing zero.

Note: Your solution should be in logarithmic time complexity.

Solutions

Python3

Java

...