Skip to content

Commit 3b74f61

Browse files
authored
Update lesson13.ts file by fixing code formatting
1 parent a44ec7d commit 3b74f61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lesson_13/maps_ts/src/lesson13.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* https://leetcode.com/problems/permutation-difference-between-two-strings
44
*/
55
export function findPermutationDifference(s: string, t: string): number {
6-
const charByIndex = new Map<String, number>();
6+
const charByIndex = new Map<string, number>();
77

88
for(let i = 0; i < s.length; ++i) {
99
charByIndex.set(s[i], i);

0 commit comments

Comments
 (0)