Skip to content

Commit 8e80930

Browse files
committed
fix: update
1 parent 061c24f commit 8e80930

File tree

1 file changed

+1
-1
lines changed
  • solution/3200-3299/3233.Find the Count of Numbers Which Are Not Special

1 file changed

+1
-1
lines changed

solution/3200-3299/3233.Find the Count of Numbers Which Are Not Special/Solution.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class Solution {
22
static int m = 31623;
33
static boolean[] primes = new boolean[m + 1];
4-
4+
55
static {
66
Arrays.fill(primes, true);
77
primes[0] = primes[1] = false;

0 commit comments

Comments
 (0)