Skip to content

Commit

Permalink
Solution to today's problem
Browse files Browse the repository at this point in the history
  • Loading branch information
spannm committed Mar 1, 2024
1 parent 68ebbd0 commit 73ac48c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/
public class Problem2864 extends LeetcodeProblem {

public String maximumOddBinaryNumber(String s) {
String maximumOddBinaryNumber(String s) {
int cnt = 0;
for (char c : s.toCharArray()) {
if (c == '1') {
Expand Down

0 comments on commit 73ac48c

Please sign in to comment.