Skip to content

Commit 706efde

Browse files
committed
Fixed format
1 parent 79f5407 commit 706efde

File tree

1 file changed

+1
-2
lines changed
  • src/main/java/g3701_3800/s3734_lexicographically_smallest_palindromic_permutation_greater_than_target

1 file changed

+1
-2
lines changed

src/main/java/g3701_3800/s3734_lexicographically_smallest_palindromic_permutation_greater_than_target/Solution.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
import java.util.Arrays;
66

77
public class Solution {
8-
public boolean func(
9-
int i, String target, char[] ans, int l, int r, int[] freq, boolean end) {
8+
public boolean func(int i, String target, char[] ans, int l, int r, int[] freq, boolean end) {
109
if (l > r) {
1110
return new String(ans).compareTo(target) > 0;
1211
}

0 commit comments

Comments
 (0)