本文主要是介绍LeetCode中等题 1689. 十-二进制数的最少数目,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
力扣直通车
1689. 十-二进制数的最少数目
问题描述
提示
代码
package com.leetcode.medium;/*** @author 花君瑜* @date 2022/8/1 19:47:37**/
public class P1689_MinPartitions {public int minPartitions(String n) {int max = 0;for (int i = 0; i < n.length(); i++) {if (n.charAt(i) > max) {max = n.charAt(i);}}return max - '0';}public static void main(String[] args) {P1689_MinPartitions mp = new P1689_MinPartitions();String n = "32";int max = mp.minPartitions(n);System.out.println(max);}
}
执行结果
这篇关于LeetCode中等题 1689. 十-二进制数的最少数目的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!