File tree 1 file changed +11
-11
lines changed
1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ var matrixScore = function(grid) {
14
14
15
15
let start = 0 ;
16
16
let count = 0 ;
17
- while ( start < COL ) {
18
- if ( ! grid [ start ] [ col ] ) count ++ ; ;
17
+ while ( start < COL ) {
18
+ if ( ! grid [ start ] [ col ] ) count ++ ;
19
19
start ++ ;
20
20
}
21
21
@@ -25,36 +25,36 @@ var matrixScore = function(grid) {
25
25
const flip = ( i , isRow ) => {
26
26
let start = 0 ;
27
27
28
- if ( isRow ) {
29
- while ( start < ROW ) {
28
+ if ( isRow ) {
29
+ while ( start < ROW ) {
30
30
grid [ i ] [ start ] ^= 1 ;
31
31
start ++ ;
32
32
}
33
33
return ;
34
34
}
35
35
36
- if ( ! isRow ) {
37
- while ( start < COL ) {
36
+ if ( ! isRow ) {
37
+ while ( start < COL ) {
38
38
grid [ start ] [ i ] ^= 1 ;
39
39
start ++ ;
40
40
}
41
41
return ;
42
42
}
43
43
}
44
44
45
- for ( let i = 0 ; i < COL ; i ++ ) {
46
- if ( ! grid [ i ] [ 0 ] ) flip ( i , true ) ;
45
+ for ( let i = 0 ; i < COL ; i ++ ) {
46
+ if ( ! grid [ i ] [ 0 ] ) flip ( i , true ) ;
47
47
48
- for ( let j = ( grid [ i ] [ 0 ] && 1 ) ; j < ROW ; j ++ ) {
48
+ for ( let j = ( grid [ i ] [ 0 ] && 1 ) ; j < ROW ; j ++ ) {
49
49
const numberOfZeros = countZeros ( j ) ;
50
- if ( numberOfZeros > COL - numberOfZeros ) {
50
+ if ( numberOfZeros > COL - numberOfZeros ) {
51
51
flip ( j , false ) ;
52
52
}
53
53
}
54
54
}
55
55
56
56
let total = 0 ;
57
- for ( let i = 0 ; i < COL ; i ++ ) {
57
+ for ( let i = 0 ; i < COL ; i ++ ) {
58
58
total += parseInt ( grid [ i ] . join ( "" ) , 2 ) ;
59
59
}
60
60
You can’t perform that action at this time.
0 commit comments