Skip to content

Commit ef6cecd

Browse files
committed
Create: 0149-max-points-on-a-line.rs / .ts / .js
1 parent ee7a3bc commit ef6cecd

File tree

3 files changed

+77
-0
lines changed

3 files changed

+77
-0
lines changed
+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/**
2+
* @param {number[][]} points
3+
* @return {number}
4+
*/
5+
var maxPoints = function (points) {
6+
let res = 1;
7+
8+
for (let i = 0; i < points.length; i++) {
9+
const count = new Map();
10+
const point1 = points[i];
11+
for (let j = i + 1; j < points.length; j++) {
12+
const point2 = points[j];
13+
let slope;
14+
if (point2[0] === point1[0]) {
15+
slope = Number.MAX_SAFE_INTEGER;
16+
} else {
17+
slope = (point2[1] - point1[1]) / (point2[0] - point1[0]);
18+
}
19+
!count.has(slope)
20+
? count.set(slope, 2)
21+
: count.set(slope, count.get(slope) + 1);
22+
23+
res = Math.max(res, count.get(slope));
24+
}
25+
}
26+
return res;
27+
};

rust/0149-max-points-on-a-line.rs

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
use std::collections::HashMap;
2+
3+
impl Solution {
4+
pub fn max_points(points: Vec<Vec<i32>>) -> i32 {
5+
let mut res = 1;
6+
7+
for i in 0..points.len() {
8+
let point1 = &points[i];
9+
let mut count = HashMap::new();
10+
for j in (i + 1)..points.len() {
11+
let point2 = &points[j];
12+
let slope;
13+
if point2[0] == point1[0] {
14+
slope = i32::MAX;
15+
} else {
16+
slope = ((point2[1] as f64 - point1[1] as f64)
17+
/ (point2[0] as f64 - point1[0] as f64)
18+
* 100000.0) as i32;
19+
}
20+
21+
*count.entry(slope).or_insert(1) += 1;
22+
res = res.max(*count.get(&slope).unwrap());
23+
}
24+
}
25+
res
26+
}
27+
}
+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
function maxPoints(points: number[][]): number {
2+
let res = 1;
3+
4+
for (let i = 0; i < points.length; i++) {
5+
const count = new Map();
6+
const point1 = points[i];
7+
for (let j = i + 1; j < points.length; j++) {
8+
const point2 = points[j];
9+
let slope;
10+
if (point2[0] === point1[0]) {
11+
slope = Number.MAX_SAFE_INTEGER;
12+
} else {
13+
slope = (point2[1] - point1[1]) / (point2[0] - point1[0]);
14+
}
15+
!count.has(slope)
16+
? count.set(slope, 2)
17+
: count.set(slope, count.get(slope) + 1);
18+
19+
res = Math.max(res, count.get(slope));
20+
}
21+
}
22+
return res;
23+
}

0 commit comments

Comments
 (0)