File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ async function main() {
108
108
exit ( 1 ) ;
109
109
}
110
110
const file_path = argv [ 2 ] ;
111
- const buffer_limit = parseInt ( argv [ 3 ] , 10 ) ;
111
+ const buffer_limit = parseInt ( argv [ 3 ] ) ;
112
112
let callback ;
113
113
let await_each_step ;
114
114
if ( argv . length == 5 ) {
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ export function callback(candidate) {
11
11
const text = candidate . toString ( ) ;
12
12
const match = text . match ( / \( \( C e l l ( \d ) ( \d ) \) = \( L i t e r a l ( \d ) \) \) / ) ;
13
13
if ( match ) {
14
- const row = parseInt ( match [ 1 ] , 10 ) ;
15
- const col = parseInt ( match [ 2 ] , 10 ) ;
14
+ const row = parseInt ( match [ 1 ] ) ;
15
+ const col = parseInt ( match [ 2 ] ) ;
16
16
const value = match [ 3 ] ;
17
17
array [ row - 1 ] [ col - 1 ] = value ;
18
18
console . log ( "Current partial solution:" ) ;
You can’t perform that action at this time.
0 commit comments