submit
This commit is contained in:
+2
-1
@@ -7,4 +7,5 @@
|
||||
.idea/
|
||||
*~
|
||||
*.DotSettings.user
|
||||
|
||||
*.html
|
||||
test
|
||||
|
||||
@@ -15,7 +15,7 @@ int *my_factor(int n){
|
||||
while(tmp > 1){
|
||||
if (tmp % div == 0){
|
||||
cnt ++;
|
||||
tmp = tmp /div
|
||||
tmp = tmp /div;
|
||||
}
|
||||
else div ++;
|
||||
}
|
||||
@@ -41,3 +41,4 @@ int *my_factor(int n){
|
||||
return rslt;
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user