LeetCode 五月打卡-day13

Posted 王六六的IT日常

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 五月打卡-day13相关的知识,希望对你有一定的参考价值。

944. 删列造序

【宫水三叶】简单模拟题



class Solution 
    public int minDeletionSize(String[] strs) 
    int ans = 0;
    int n = strs.length;
    int m = strs[0].length();
    for(int j = 0;j < m;j++)
    
        for(int i = 0;i+1 < n;i++ )
        
            if(strs[i+1].charAt(j) < strs[i].charAt(j))
                ans++;
                break;
            
        
    
    return ans;
    

以上是关于LeetCode 五月打卡-day13的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 五月打卡-day01

LeetCode 五月打卡-day19

LeetCode 五月打卡-day07

LeetCode 五月打卡-day20

LeetCode 五月打卡-day08

LeetCode 五月打卡-day06