Problem Statement
Pattern: Pattern Inclusion Exclusion Principle
Solution
Keyword OR
int divisible (int n, int a, int b) {
int countA = n/a;
int countB = n/b;
int countAB = n/(a*b);
return countA + countB - countAB;
}
TC : SC :
Pattern: Pattern Inclusion Exclusion Principle
Keyword OR
int divisible (int n, int a, int b) {
int countA = n/a;
int countB = n/b;
int countAB = n/(a*b);
return countA + countB - countAB;
}
TC : SC :