• LeetCode|788. Rotated Digits


    X is a good number if after rotating each digit individually by 180 degrees, we get a valid number that is different from X.  Each digit must be rotated - we cannot choose to leave it alone.

    A number is valid if each digit remains a digit after rotation. 0, 1, and 8 rotate to themselves; 2 and 5 rotate to each other; 6 and 9 rotate to each other, and the rest of the numbers do not rotate to any other number and become invalid.

    Now given a positive number N, how many numbers X from 1 to N are good?

    Example:

    Input: 10
    Output: 4
    Explanation:
    There are four good numbers in the range [1, 10] : 2, 5, 6, 9.
    Note that 1 and 10 are not good numbers, since they remain unchanged after rotating.

    Note:
    N  will be in range [1, 10000].

    Solution

    本题题意很容易理解,0到9的数字如果这个数字旋转180°之后还是数字那么这个数字叫做旋转数,如果旋转180°后还是自身那么这个数可以称为自旋数,如果旋转后不是数字那么这个数就是非旋转数。这里面有个点题意没说,也就是说如果多位数字N只要包含一个非旋转数,则N为非旋转数。换句话说,旋转数中只能包含自旋数和旋转数。

    我们用代码很容易实现这个思路。

    class Solution {
        static int[] index={0,0,1,-1,-1,1,1,-1,0,9};
        public int rotatedDigits(int N) {
            int count=0;
            for(int i=0;i<=N;i++){
                if(isRotate(i)){
                    count++;
                }
            }
            return count;
        }
        
            private static boolean isRotate(int num){
            boolean result=false;
            int selfCount=0;
            int count=0;
            while(num>0){
                int cur=num%10;
                count++;
          if(index[cur]==-1){
                    result=false;
                    break;
                }else if(index[cur]==0){
                    selfCount++;
                }else{
                    result=true;
                }
                num=num/10;
            }
            return result&&selfCount!=count;
        }
    }
    
  • 相关阅读:
    了解大数据的特点、来源与数据呈现方式
    结对项目
    第四次作业
    阅读《构建之法》1-5章有感
    iOS 应用如何完全支持 IPv6-ONLY 网络?
    丙申年把真假美猴王囚禁在容器中跑 ASP.NET Core 1.0
    ASP.NET Core 1.0 部署 HTTPS (.NET Framework 4.5.1)
    推荐一款跨平台的 Azure Storage Explorer
    更改 Skype for Business Online 的 Sip 地址以匹配UPN
    C# 计算字符串在控制台中的显示长度
  • 原文地址:https://www.cnblogs.com/rever/p/11925894.html
Copyright © 2020-2023  润新知