This commit is contained in:
2026-02-02 04:56:58 +01:00
parent 390f7ef7d9
commit 85c5f535d8
+1 -1
View File
@@ -6,7 +6,7 @@
int *my_factor(int n){
if (n <= 0) return NULL;
if (n == 1) return 1;
//if (n == 1) return 1;
int cnt = 0;
int tmp = n;