Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

the answer of any-odd-one.c seems wrong #81

Open
Jammillk opened this issue May 16, 2022 · 1 comment
Open

the answer of any-odd-one.c seems wrong #81

Jammillk opened this issue May 16, 2022 · 1 comment

Comments

@Jammillk
Copy link

I think the answer return !!(0xAAAAAAAA & x); is for "any-even-one"

for example, 4bit unsigned int 0101 & 0xA(1010) = 0000, after two !! the result is 0, it's incorrect.

if I change 0xAAAAAAAA to 0x55555555, 4bit unsigned int 0101 & 0xA(0101) = 1111, after two !!, the result is 1,it's correct.

it confuse me so long, please help me answer it ,thank u ~

@paradox181
Copy link

paradox181 commented May 16, 2022 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants