We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e1e05e commit 5d02c4fCopy full SHA for 5d02c4f
exercises/practice/sublist/.meta/proof.ci.js
@@ -13,7 +13,7 @@ export class List {
13
other.items.length === 0 ||
14
`,${this.items.join(',')},`.includes(`,${other.items.join(',')},`);
15
return ['UNEQUAL', 'SUPERLIST', 'SUBLIST', 'EQUAL'][
16
- +superlist + (+sublist << 1)
+ Number(superlist) + (Number(sublist) << 1)
17
];
18
}
19
0 commit comments