Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 765 Bytes

File metadata and controls

32 lines (26 loc) · 765 Bytes

1952. Three Divisors

Given an integer n, return true if n has exactly three positive divisors. Otherwise, return false.

An integer m is a divisor of n if there exists an integer k such that n = k * m.

Example 1:

Input: n = 2
Output: false
Explanation: 2 has only two divisors: 1 and 2.

Example 2:

Input: n = 4
Output: true
Explanation: 4 has three divisors: 1, 2, and 4.

Constraints:

  • 1 <= n <= 104

Solutions (Rust)

1. Solution

impl Solution {
    pub fn is_three(n: i32) -> bool {
        (1..=n).filter(|m| n % m == 0).count() == 3
    }
}