Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create ContainsDuplicateTest.java #205

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
26 changes: 26 additions & 0 deletions company/palantir/ContainsDuplicateTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import static org.junit.Assert.assertEquals;
import org.junit.Test;


//Given an array of integers, find if the array contains any duplicates. Your function should return
//true if any value appears at least twice in the array, and it should return false if every element is distinct.

public class ContainsDuplicateTest {

@Test
void Example1() {
int[] arr = {1,1,3,4};
assertTrue(containsDuplicate(arr));
}
@Test
void Example2() {
int[] arr = {1,3,4};
assertFalse(containsDuplicate(arr));
}
@Test
void Example3() {
int[] arr = {1,1,2,2};
assertFalse(containsDuplicate(arr));
}

}