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

Method main

Java/Leetcode/Leetcode136.java:6–10  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

4
5public class Leetcode136 {
6 public static void main(String[] args) {
7 int[] arr={4,1,2,1,2};
8 int ans=uniqueNumber(arr);
9 System.out.println(ans);
10 }
11
12 static int uniqueNumber(int[] arr){
13 int answer=0;

Callers

nothing calls this directly

Calls 1

uniqueNumberMethod · 0.95

Tested by

no test coverage detected