Skip to content

Commit c5d9bef

Browse files
committed
add line breaks at the end of files
1 parent be60638 commit c5d9bef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

valid-anagram/1lsang.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ const isEqual = (a: Record<string, number>, b: Record<string, number>) => {
1010

1111
function isAnagram(s: string, t: string): boolean {
1212
return s.length === t.length && isEqual(getCountObj(s), getCountObj(t));
13-
};
13+
};

0 commit comments

Comments
 (0)