Skip to content

Commit d9744f4

Browse files
committed
fix: 줄바꿈
1 parent 70ff4ae commit d9744f4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

house-robber/soobing3.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ function rob(nums: number[]): number {
77
dp[i] = Math.max(dp[i-1], dp[i-2] + nums[i]);
88
}
99
return dp[nums.length - 1];
10-
};
10+
};

0 commit comments

Comments
 (0)