We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4aedd4f commit 006677fCopy full SHA for 006677f
typescript/0705-design-hashset.ts
@@ -8,7 +8,7 @@ class _ListNode { // ListNode has a confict
8
}
9
10
class MyHashSet {
11
- readonly ARRAY_LENGTH = Math.pow(10,4);
+ readonly ARRAY_LENGTH = Math.pow(10, 4);
12
set = new Array<_ListNode>(this.ARRAY_LENGTH);
13
14
constructor() {
0 commit comments