File tree 3 files changed +77
-0
lines changed
3 files changed +77
-0
lines changed Original file line number Diff line number Diff line change
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
+ } ;
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments