Skip to content

Commit 006677f

Browse files
authored
Add Space
1 parent 4aedd4f commit 006677f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

typescript/0705-design-hashset.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class _ListNode { // ListNode has a confict
88
}
99

1010
class MyHashSet {
11-
readonly ARRAY_LENGTH = Math.pow(10,4);
11+
readonly ARRAY_LENGTH = Math.pow(10, 4);
1212
set = new Array<_ListNode>(this.ARRAY_LENGTH);
1313

1414
constructor() {

0 commit comments

Comments
 (0)