Woops had a erroneous function in problem 066

This commit is contained in:
Philippe Zwietering
2021-11-09 16:12:37 +01:00
parent 2477b229d5
commit 26b32ce7c8

View File

@@ -45,18 +45,6 @@ int gcd(int a, int b, int c){
return gcd(a, gcd(b, c)); return gcd(a, gcd(b, c));
} }
int p(int n, int p0, int p1){
if(n == 0){
return p0;
} else if(n == 1){
return p1;
} else if(n > 1){
return
}
return 0;
}
// Code yanked from problem 64 // Code yanked from problem 64
vector<int> findCF(int n){ vector<int> findCF(int n){
float x = sqrt((float)n); float x = sqrt((float)n);