We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 118c080 commit af70a98Copy full SHA for af70a98
src/main/java/com/fishercoder/solutions/_1232.java
@@ -4,7 +4,7 @@ public class _1232 {
4
public static class Solution1 {
5
/**
6
* To check if they share the same slope, we use this formula:
7
- *
+ * <p>
8
* check whether (y4 - y3)/(x4- x3) equals to (y2 - y1)/(x2 - x1)
9
* considering denominator could be zero, we'll change it to use multiplication instead of division,
10
* thus it becomes
0 commit comments