File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
main/java/com/thealgorithms/randomized
test/java/com/thealgorithms/randomized Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 9
9
import java .util .Set ;
10
10
11
11
class Point {
12
- double x , y ;
12
+ double x ;
13
+ double y ;
13
14
14
- public Point (double x , double y ) {
15
+ Point (double x , double y ) {
15
16
this .x = x ;
16
17
this .y = y ;
17
18
}
Original file line number Diff line number Diff line change 1
1
package com .thealgorithms .randomized ;
2
- import static org .junit .jupiter .api .Assertions .*;
3
- import static org .junit .jupiter .api .Assertions .assertEquals ;
4
2
5
- import com .thealgorithms .datastructures .crdt .GCounterTest ;
6
3
import java .util .ArrayList ;
7
4
import java .util .Arrays ;
8
5
import java .util .List ;
9
6
import java .util .Random ;
10
7
import org .junit .jupiter .api .Test ;
11
8
9
+ import static org .junit .jupiter .api .Assertions .*;
10
+
12
11
class ClosestPairTest {
13
12
14
13
@ Test
You can’t perform that action at this time.
0 commit comments