Skip to content

Commit 7c4d7c0

Browse files
authored
feat: update ts solution to lc problem: No.2695 (doocs#1515)
1 parent 898aa51 commit 7c4d7c0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

solution/2600-2699/2695.Array Wrapper/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class ArrayWrapper {
8282
}
8383

8484
toString() {
85-
return `[${this.nums.join(',')}]`;
85+
return `[${this.nums}]`;
8686
}
8787
}
8888

solution/2600-2699/2695.Array Wrapper/README_EN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class ArrayWrapper {
7474
}
7575

7676
toString() {
77-
return `[${this.nums.join(',')}]`;
77+
return `[${this.nums}]`;
7878
}
7979
}
8080

solution/2600-2699/2695.Array Wrapper/Solution.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class ArrayWrapper {
1212
}
1313

1414
toString() {
15-
return `[${this.nums.join(',')}]`;
15+
return `[${this.nums}]`;
1616
}
1717
}
1818

0 commit comments

Comments
 (0)