Package g1901_2000.s1952_three_divisors
Class Solution
-
- All Implemented Interfaces:
public final class Solution
1952 - Three Divisors\.
Easy
Given an integer
n
, returntrue
ifn
has exactly three positive divisors. Otherwise, returnfalse
.An integer
m
is a divisor ofn
if there exists an integerk
such thatn = k * m
.Example 1:
Input: n = 2
Output: false
Explantion: 2 has only two divisors: 1 and 2.
Example 2:
Input: n = 4
Output: true
Explantion: 4 has three divisors: 1, 2, and 4.
Constraints:
<code>1 <= n <= 10<sup>4</sup></code>
-
-
Constructor Summary
Constructors Constructor Description Solution()
-