MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / main

Method main

Java/Leetcode/Leetcode190.java:4–8  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

2
3public class Leetcode190 {
4 public static void main(String[] args) {
5 int n = 25;
6 int answer = reverseBits(n);
7 System.out.println(answer);
8 }
9
10 static int reverseBit(int n) {
11 int rev = 0;

Callers

nothing calls this directly

Calls 1

reverseBitsMethod · 0.95

Tested by

no test coverage detected