LeetCode LCR135[报数]

题目

链接

LeetCode LCR135[报数]

详情

实例

题解

思路

通过 pow 函数对10进行幂运算,来获取报数范围

然后循环遍历

通过 push_back 方法将数字加入到容器内

代码

class Solution {
public:
    vector<int> countNumbers(int cnt) {
        
        vector<int> iRetVec;

        for (int i = 1; i < pow(10, cnt); i++)
            iRetVec.push_back(i);

        return iRetVec;
    }
};
posted @ 2024-11-07 19:19  EricsT  阅读(3)  评论(0编辑  收藏  举报