Skip to content

Commit 5d02c4f

Browse files
authored
Update proof.ci.js
Remove implicit coercion (attempt 1)
1 parent 5e1e05e commit 5d02c4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/practice/sublist/.meta/proof.ci.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export class List {
1313
other.items.length === 0 ||
1414
`,${this.items.join(',')},`.includes(`,${other.items.join(',')},`);
1515
return ['UNEQUAL', 'SUPERLIST', 'SUBLIST', 'EQUAL'][
16-
+superlist + (+sublist << 1)
16+
Number(superlist) + (Number(sublist) << 1)
1717
];
1818
}
1919
}

0 commit comments

Comments
 (0)