Skip to content

Commit 5480206

Browse files
fix build
1 parent 7ee4edf commit 5480206

File tree

1 file changed

+3
-1
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+3
-1
lines changed

src/main/java/com/fishercoder/solutions/_478.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ public static class Solution1 {
77
* and
88
* https://leetcode.com/problems/generate-random-point-in-a-circle/discuss/155650/Explanation-with-Graphs-why-using-Math.sqrt()
99
*/
10-
double radius, xCenter, yCenter;
10+
double radius;
11+
double xCenter;
12+
double yCenter;
1113

1214
public Solution1(double radius, double xCenter, double yCenter) {
1315
this.radius = radius;

0 commit comments

Comments
 (0)