Skip to content

Commit 5a77dce

Browse files
committed
solution add empty line
1 parent b7e5af5 commit 5a77dce

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

3sum/hoyeongkwak.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ function threeSum(nums: number[]): number[][] {
2727
}
2828
}
2929
return result
30-
};
30+
}

climbing-stairs/hoyeongkwak.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ function climbStairs(n: number): number {
1212
curr = tempPrev + curr
1313
}
1414
return curr
15-
};
15+
}

product-of-array-except-self/hoyeongkwak.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ function productExceptSelf(nums: number[]): number[] {
1616
}
1717

1818
return results
19-
};
19+
}

valid-anagram/hoyeongkwak.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ function isAnagram(s: string, t: string): boolean {
1414
count[t.charCodeAt(i) - 97]--
1515
}
1616
return count.every(c => c === 0)
17-
};
17+
}

validate-binary-search-tree/hoyeongkwak.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ function isValidBST(root: TreeNode | null): boolean {
3131
}
3232
inOrder(root)
3333
return isValid
34-
};
34+
}

0 commit comments

Comments
 (0)