LeetCode LCR135[報數]

EricsT發表於2024-11-07

題目

連結

LeetCode LCR135[報數]

詳情

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;
    }
};

相關文章