[LeetCode] Separate the Digits in an Array

2553. Separate the Digits in an Array

Given an array of positive integers nums, return an array answer that consists of the digits of each integer in nums after separating them in the same order they appear in nums.

To separate the digits of an integer is to get all the digits it has in the same order.

  • For example, for the integer 10921, the separation of its digits is [1,0,9,2,1].
1
2
3
4
5
6
7
8
9
10
11
class Solution {
public:
vector<int> separateDigits(vector<int>& nums) {
vector<int> res;
for(auto n : nums) {
string s = to_string(n);
for(auto ch : s) res.push_back(ch-'0');
}
return res;
}
};
Author: Song Hayoung
Link: https://songhayoung.github.io/2023/02/08/PS/LeetCode/separate-the-digits-in-an-array/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.