LCP 66.最小展台数量

​​题目来源:

        leetcode题目,网址:LCP 66. 最小展台数量 - 力扣(LeetCode)

解题思路:

       对每种类型的展台在会在某一天中的出现的最大数量求和即可。

解题代码:

class Solution {
    public int minNumBooths(String[] demand) {
        int[] max=new int[26];
        for(int i=0;i
 
  

总结:

        无官方题解。


你可能感兴趣的:(#,Java,LeetCode,Java)