LeetCode 五月打卡-day13
Posted 王六六的IT日常
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 五月打卡-day13相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章