Function samePositionBitCount - CTS Pattern
Coding Problem Keys
CTS Pattern
Function samePositionBitCount
Problem Statement
You are required to fix all logical errors in the given code. You can click on run anytime to check the compilation/execution status of the program. You can use printf to debug your code. The submitted code should be logically/syntactically correct and pass all test cases. Do not write the main() function as it is not required.
Code Approach: For this question, you will need to correct the given implementation. We do not expect you to modify the approach or incorporate any additional library methods.
The function samePositionBitCount (int N1, int N2) accepts two integers N1 and N2 as the input. The function is supposed to return the count of bits which are equal in both the integers at the same positions.
The function compiles fine but fails to return the desired result due to logical errors.
Your task is to fix the program so that it passes all test cases.
Max Execution Time Limit: 5000 millisecs
Given Code
int samePositionBitCount(int N1, int N2) { int count=0; int N3 = N1 ^ N2; int max = N1 > N2 ? N1 : N2; while(N3>0) { if((N3 & 1) == 0) { count++; } max /= 2; N3 /= 2; } return count; }
Solution
Programming Language: C Language
int samePositionBitCount(int N1, int N2){
int count=0;
int N3 = N1 ^ N2;
int max = N1 > N2 ? N1 : N2;
while(max>0){
if((N3 & 1) == 0){
count++;
}
max /= 2;
N3 /= 2;
}
return count;
}
// Published By PKJCODERS
(Note: Incase If the code doesn't Pass the output kindly comment us with your feedback to help us improvise.)
Comments