Created
June 30, 2015 21:49
-
-
Save mrjeremyt/e5c4c4856a7844df8832 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
public static String getBinaryRepresentation(int n) { | |
/* | |
Please implement this method to | |
return a String with the binary representation of any number n, where n >= 0. | |
Example: "101" is a binary representation of 5 | |
*/ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment