Skip to content

Commit 14fb531

Browse files
committed
Add line breaks
1 parent da83a07 commit 14fb531

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

combination-sum/Wonjuny0804.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ function combinationSum(candidates: number[], target: number): number[][] {
1919
candidates.sort((a, b) => a - b);
2020
dfs(0, target, []);
2121
return result;
22-
};
22+
};

decode-ways/Wonjuny0804.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ function numDecodings(s: string): number {
1818
}
1919

2020
return dfs(0);
21-
}
21+
}

0 commit comments

Comments
 (0)