Skip to content

Commit 3d439d3

Browse files
author
jjcapparell
committed
chore: line deletions for java file
1 parent 5ac4271 commit 3d439d3

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
@@ -9,7 +9,7 @@ export function findPermutationDifference(s: string, t: string): number {
99
for (const key of stringS.keys()) {
1010
if (stringT.has(key)) {
1111
const value1 = stringS.get(key)!; // Non-null assertion because we checked with has()
12-
const value2 = stringT.get(key)!; // Non-null assertion
12+
const value2 = stringT.get(key)!; // Non-null assertion
1313
const difference = Math.abs(value1 - value2);
1414
diffSum += difference;
1515
}

0 commit comments

Comments
 (0)