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

Method main

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

Source from the content-addressed store, hash-verified

2
3public class Leetcode476 {
4 public static void main(String[] args) {
5 int n = 5;
6 int ans = compliment(n);
7 System.out.println(ans);
8 }
9
10 static int compliment(int n) {
11 return ~n;

Callers

nothing calls this directly

Calls 1

complimentMethod · 0.95

Tested by

no test coverage detected