Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions src/com/jwetherell/algorithms/numbers/Integers.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@

public class Integers {

private static final int BILLION = 1000000000; //moved to the front for better readability (forgot to branch lol)(again)
private static final int MILLION = 1000000;
private static final int THOUSAND = 1000;
private static final int HUNDRED = 100;
private static final int TEN = 10;

private static final BigDecimal ZERO = new BigDecimal(0);
private static final BigDecimal TWO = new BigDecimal(2);

Expand Down Expand Up @@ -137,11 +143,7 @@ public static final boolean powerOfTwoUsingBits(int numberToCheck) {
multiDigits.put(90,"ninety");
}

private static final int BILLION = 1000000000;
private static final int MILLION = 1000000;
private static final int THOUSAND = 1000;
private static final int HUNDRED = 100;
private static final int TEN = 10;


private static final String handleUnderOneThousand(int number) {
StringBuilder builder = new StringBuilder();
Expand Down