Skip to content

Latest commit

 

History

History
23 lines (22 loc) · 567 Bytes

Delete-Columns-to-Make-Sorted.md

File metadata and controls

23 lines (22 loc) · 567 Bytes

Delete Columns to Make Sorted

Question

Solution:

class Solution {
public:
    int minDeletionSize(vector<string>& strs) {
        int count= 0;
        for(int j=0; j<strs[0].size(); j++) {
            char ch = strs[0][j];
            for(int i=1; i<strs.size(); i++) {
                if(ch <= strs[i][j]) ch = strs[i][j];
                else {
                    count++;
                    break;
                }
            }
        }
        return count;
    }
};