文章作者:Tyan
博客:noahsnail.com | CSDN | 简书
1. Description

2. Solution
解析:Version 1,使用两个变量monday和others表示周一和其它天,由于一周是7天,因此遍历时当碰到当天能整除7时,表示是周一,当天存钱数量为monday+1,同时更新monday和others值,当不能整除时,当天存钱数量为others+1,更新others值,每天的钱数累加到total中即可。
- Version 1
1 | class Solution: |