zoukankan      html  css  js  c++  java
  • LeetCode 551. Student Attendance Record I (学生出勤纪录 I)

    You are given a string representing an attendance record for a student. The record only contains the following three characters:
    1. 'A' : Absent.
    2. 'L' : Late.
    3. 'P' : Present.

    A student could be rewarded if his attendance record doesn't contain more than one 'A' (absent) or more than two continuous 'L' (late).

    You need to return whether the student could be rewarded according to his attendance record.

    Example 1:

    Input: "PPALLP"
    Output: True
    

    Example 2:

    Input: "PPALLL"
    Output: False
    

    题目标签:String

      题目让我们检查String s,不能有超过1个A 或者 不能连着有超过2个L。

      检查A 很容易,检查L 的话,要检查连续的,只要在不是L的情况下,把 count_L reset 回到2就可以了。具体请看code。

    Java Solution:

    Runtime beats 98.72% 

    完成日期:04/21/2018

    关键词:String

    关键点:reset count_L if this char is not 'L'

     1 class Solution 
     2 {
     3     public boolean checkRecord(String s) 
     4     {
     5         char [] arr = s.toCharArray();
     6         int count_A = 1;
     7         int count_L = 2;       
     8 
     9         for(int i=0; i<arr.length; i++)
    10         {
    11             char c = arr[i];
    12             
    13             if(c == 'L') // if char is 'L'
    14             {
    15                 count_L--;
    16             }   // if char is 'A' or 'P'
    17             else
    18             {
    19                 if(c == 'A')
    20                     count_A--;
    21                 
    22                 count_L = 2; // if this char is not L, set count_L to 2
    23             }
    24             
    25             if(count_A < 0 || count_L < 0)
    26                 return false;
    27         }
    28         
    29         return true;
    30     }
    31 }

    参考资料:n/a

    LeetCode 题目列表 - LeetCode Questions List

    题目来源:https://leetcode.com/

  • 相关阅读:
    2019-08-27-Seo如何做好关键词布局
    layui 表格格式化时间
    js 获取ip
    layui 表格删除多行
    Flask JWT Extended 的令牌和刷新令牌
    解决ubuntu下深度音乐和wine程序托盘图标的问题
    ubuntu 阅读caj文件(cajviewer)
    django 结合 xlwt 实现数据导入excel 并下载
    ubuntu 安装Xournal
    pyQt5 计算器
  • 原文地址:https://www.cnblogs.com/jimmycheng/p/8905442.html
Copyright © 2011-2022 走看看