LeetCode 1952. Three Divisors Solution in Java, C++, Python & More | Explanation + Code

CoderIndeed
0
1952. Three Divisors

Description

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
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:

  • 1 <= n <= 104

Solutions

Solution 1

PythonJavaC++GoJavaScript
class Solution: def isThree(self, n: int) -> bool: return sum(n % i == 0 for i in range(2, n)) == 1(code-box)

Solution 2

PythonJavaC++GoJavaScript
class Solution: def isThree(self, n: int) -> bool: cnt = 0 i = 1 while i <= n // i: if n % i == 0: cnt += 1 if i == n // i else 2 i += 1 return cnt == 3(code-box)

Post a Comment

0Comments

Post a Comment (0)

#buttons=(Accept !) #days=(20)

Our website uses cookies to enhance your experience. Check Now
Accept !