Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit af70a98

Browse files
committedAug 12, 2020
refactor 1232
1 parent 118c080 commit af70a98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/main/java/com/fishercoder/solutions/_1232.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ public class _1232 {
44
public static class Solution1 {
55
/**
66
* To check if they share the same slope, we use this formula:
7-
*
7+
* <p>
88
* check whether (y4 - y3)/(x4- x3) equals to (y2 - y1)/(x2 - x1)
99
* considering denominator could be zero, we'll change it to use multiplication instead of division,
1010
* thus it becomes

0 commit comments

Comments
 (0)
Failed to load comments.