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 99import java .util .Set ;
1010
1111class Point {
12- double x , y ;
12+ double x ;
13+ double y ;
1314
14- public Point (double x , double y ) {
15+ Point (double x , double y ) {
1516 this .x = x ;
1617 this .y = y ;
1718 }
Original file line number Diff line number Diff line change 11package com .thealgorithms .randomized ;
2- import static org .junit .jupiter .api .Assertions .*;
3- import static org .junit .jupiter .api .Assertions .assertEquals ;
42
5- import com .thealgorithms .datastructures .crdt .GCounterTest ;
63import java .util .ArrayList ;
74import java .util .Arrays ;
85import java .util .List ;
96import java .util .Random ;
107import org .junit .jupiter .api .Test ;
118
9+ import static org .junit .jupiter .api .Assertions .*;
10+
1211class ClosestPairTest {
1312
1413 @ Test
You can’t perform that action at this time.
0 commit comments