Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 566 Bytes

Question_3168.md

File metadata and controls

26 lines (22 loc) · 566 Bytes

LeetCode Records - Question 3168 Minimum Number of Chairs in a Waiting Room

Attempt 1: Update the maximum count

class Solution {
    public int minimumChairs(String s) {
        int count = 0;
        int max = 0;

        for (char ch : s.toCharArray()) {
            if (ch == 'E') {
                count++;
                max = Math.max(max, count);
            } else {
                count--;
            }
        }

        return max;
    }
}
  • Runtime: 1 ms (Beats: 100.00%)
  • Memory: 41.89 MB (Beats: 83.34%)