Skip to main content
Back to problems
#2553
Easy Algorithms

Separate the digits in an array

Array Simulation
80.8% acceptance
Feb 25, 2026
547
15
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].

Solution

Rust
Time O(n²)
Space O(n)
LeetCode
solution.rs
impl Solution {
  pub fn separate_digits(nums: Vec<i32>) -> Vec<i32> {
    let mut result = Vec::new();
    for &num in &nums {
      let s = num.to_string();
      for ch in s.chars() {
        result.push((ch as i32) - ('0' as i32));
      }
    }
    result
  }
}