-
-
Notifications
You must be signed in to change notification settings - Fork 46.6k
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
convert to the base minus 2 of a number #9748
Merged
Merged
Changes from 17 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
4e9df4a
Fix: Issue 9588
haxkd 1fab302
Fix: Issue 9588
haxkd 8704157
Merge branch 'TheAlgorithms:master' into master
haxkd 143764d
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 045652d
Fix: Issue 9588
haxkd b5fb9f5
Merge branch 'master' of https://github.com/haxkd/Python
haxkd 95161a0
Fix: Issue #9588
haxkd 155601c
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 376cb60
Fix: Issue #9588
haxkd 6a424b3
Fix: Issue #9588
haxkd a878e4b
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 2b096d9
Merge branch 'TheAlgorithms:master' into master
haxkd 115703e
Fix: Issue #9588
haxkd 58d3a8d
Fix: Issue #9588
haxkd 23ef488
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 9dc4645
Merge branch 'TheAlgorithms:master' into master
haxkd 6b47421
fix: issue #9793
haxkd e7bc55c
fix: issue #9793
haxkd 8606171
fix: issue #9588
haxkd f521847
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
def decimal_to_negative_base_2(num: int) -> int: | ||
""" | ||
This function returns the number negative base 2 | ||
of the decimal number of the input data. | ||
|
||
Args: | ||
int: The decimal number to convert. | ||
|
||
Returns: | ||
int: The negative base 2 number. | ||
|
||
Examples: | ||
>>> decimal_to_negative_base_2(0) | ||
0 | ||
>>> decimal_to_negative_base_2(-19) | ||
111101 | ||
>>> decimal_to_negative_base_2(4) | ||
100 | ||
>>> decimal_to_negative_base_2(7) | ||
11011 | ||
""" | ||
if num == 0: | ||
return 0 | ||
ans = "" | ||
while num != 0: | ||
rem = num % -2 | ||
num = num // -2 | ||
if rem < 0: | ||
rem += 2 | ||
num += 1 | ||
|
||
ans = str(rem) + ans | ||
|
||
return int(ans) | ||
|
||
|
||
if __name__ == "__main__": | ||
import doctest | ||
|
||
doctest.testmod() | ||
cclauss marked this conversation as resolved.
Show resolved
Hide resolved
|
File renamed without changes.
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.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's use https://docs.python.org/3/library/functions.html#divmod instead
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done