Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upCreate odd_or_even.py #2068
Open
Create odd_or_even.py #2068
Conversation
===================short test summary info========================== |
Thank you for the code. Please make changes to it to fix the failure. |
return "Even" | ||
|
||
|
||
if(__name__ == '__main__'): |
This comment has been minimized.
This comment has been minimized.
bit_manipulation/odd_or_even.py
Outdated
if(n & 1 == 0): | ||
return "Odd" | ||
else: | ||
return "Even" |
Comment on lines
9
to
12
This comment has been minimized.
This comment has been minimized.
cclauss
Jun 3, 2020
Member
Suggested change
if(n & 1 == 0): | |
return "Odd" | |
else: | |
return "Even" | |
return "Odd" if n % 1 else "Even" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
vicky1999 commentedJun 3, 2020
Created odd_or_even.py to find whether a number is odd or even using bit manipulation.
For any odd number n: (n&1)=1
For any Even number n: (n&1)=0