Remove un-used import statements
This commit is contained in:
parent
26ff1404a1
commit
f360c538eb
@ -1,9 +1,7 @@
|
|||||||
package com.cleverthis.interview;
|
package com.cleverthis.interview;
|
||||||
|
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.Collection;
|
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.List;
|
|
||||||
import java.util.stream.Stream;
|
import java.util.stream.Stream;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
package com.cleverthis.interview;
|
package com.cleverthis.interview;
|
||||||
|
|
||||||
import java.util.Iterator;
|
|
||||||
import java.util.TreeSet;
|
import java.util.TreeSet;
|
||||||
import org.apache.commons.text.similarity.LevenshteinDistance;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This is a write-aware brute solver implementation that uses the levenshtein distance to sort passcode permutations
|
* This is a write-aware brute solver implementation that uses the levenshtein distance to sort passcode permutations
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
package com.cleverthis.interview;
|
package com.cleverthis.interview;
|
||||||
|
|
||||||
import com.cleverthis.interview.padlock.PadlockImpl;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Performance test but not mean to run in unit test.
|
* Performance test but not mean to run in unit test.
|
||||||
*/
|
*/
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
package com.cleverthis.interview;
|
package com.cleverthis.interview;
|
||||||
|
|
||||||
import com.cleverthis.interview.padlock.PadlockImpl;
|
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||||
|
Loading…
Reference in New Issue
Block a user