Skip to content

Commit

Permalink
Solutions to Miscellaneous section
Browse files Browse the repository at this point in the history
  • Loading branch information
sknsht committed Oct 28, 2018
1 parent 061bf86 commit 2fa7b33
Showing 1 changed file with 34 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import java.io.*;
import java.util.*;

public class Solution {

// Complete the flippingBits function below.
static long flippingBits(long n) {
long maxValue = (long) Math.pow(2, 32) - 1;
return n ^ maxValue;
}

private static final Scanner scanner = new Scanner(System.in);

public static void main(String[] args) throws IOException {
BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(System.getenv("OUTPUT_PATH")));

int q = scanner.nextInt();
scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])?");

for (int qItr = 0; qItr < q; qItr++) {
long n = scanner.nextLong();
scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])?");

long result = flippingBits(n);

bufferedWriter.write(String.valueOf(result));
bufferedWriter.newLine();
}

bufferedWriter.close();

scanner.close();
}
}

0 comments on commit 2fa7b33

Please sign in to comment.