Skip to content

Commit da72bd1

Browse files
committed
flatenner
1 parent 0f5e39d commit da72bd1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

challenges/flatten/flatten.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const sut = {
99
for (let i = 0; i < lines.length; i++) {
1010
const line = lines[i];
1111
const key = line.substring(0, line.indexOf(sut.separator));
12-
const count = key.search(/\S/) / 2;
12+
const count = key.search(/\S/) / 2;
1313
const value = line
1414
.substring(line.indexOf(sut.separator) + sut.separator.length)
1515
.trim();

0 commit comments

Comments
 (0)