chore: run pre-commit
Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
parent
c9f0e952a5
commit
48eae7f00b
10 changed files with 1 additions and 10 deletions
|
@ -232,4 +232,3 @@ WhitespaceSensitiveMacros:
|
||||||
- PP_STRINGIZE
|
- PP_STRINGIZE
|
||||||
- STRINGIZE
|
- STRINGIZE
|
||||||
...
|
...
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ class Solution {
|
||||||
public int buyChoco(int[] prices, int money) {
|
public int buyChoco(int[] prices, int money) {
|
||||||
int[] mins = new int[2];
|
int[] mins = new int[2];
|
||||||
mins[0] = mins[1] = Integer.MAX_VALUE;
|
mins[0] = mins[1] = Integer.MAX_VALUE;
|
||||||
|
|
||||||
for (int p : prices) {
|
for (int p : prices) {
|
||||||
if (p < mins[0]) {
|
if (p < mins[0]) {
|
||||||
mins[1] = mins[0];
|
mins[1] = mins[0];
|
||||||
|
|
|
@ -48,4 +48,3 @@ class Solution {
|
||||||
return numDecodings(s, dp, 0);
|
return numDecodings(s, dp, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -24,4 +24,3 @@ class Solution {
|
||||||
return m;
|
return m;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -18,4 +18,3 @@ class Solution {
|
||||||
return Math.min(startingZero, startingOne);
|
return Math.min(startingZero, startingOne);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -19,4 +19,3 @@ class Solution {
|
||||||
return dp[colors.length()];
|
return dp[colors.length()];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -25,4 +25,3 @@ class Solution {
|
||||||
return (int) dp[n][target];
|
return (int) dp[n][target];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -18,4 +18,3 @@ class Solution {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -13,4 +13,3 @@ impl Solution {
|
||||||
ways[2]
|
ways[2]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -24,4 +24,3 @@ impl Solution {
|
||||||
false
|
false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue