【Leetcode_easy】788. Rotated Digits
problem
solution1:
class Solution { public: int rotatedDigits(int N) { int res = 0; for(int i=1; i<=N; ++i) { if(check(i)) res++; } return res; } bool check(int num) { string str = to_string(num); bool flag = false; for(auto ch:str) { if(ch=='3'||ch=='4'||ch=='7') return false; if(ch=='2'||ch=='5'||ch=='6'||ch=='9') flag = true; } return flag; } };
参考
1. Leetcode_easy_788. Rotated Digits;
2. Grandyang;
完
各美其美,美美与共,不和他人作比较,不对他人有期待,不批判他人,不钻牛角尖。
心正意诚,做自己该做的事情,做自己喜欢做的事情,安静做一枚有思想的技术媛。
版权声明,转载请注明出处:https://www.cnblogs.com/happyamyhope/
心正意诚,做自己该做的事情,做自己喜欢做的事情,安静做一枚有思想的技术媛。
版权声明,转载请注明出处:https://www.cnblogs.com/happyamyhope/