(RankList for this Question)
Given an integer N , find the print N positive integers in ascending order which contains only digits 1,2 and 3 .
Constraints
1 <= N <= 10^4
1 <= T <= 100
Input Format
T - test cases
T integers …
Output Format
Return an integer array denoting the first positive A integers in ascending order containing only digits 1, 2 and 3.
Example 1
Input:
3
Output:
1 2 3
Explanation:
The first 3 numbers containing 1,2,3 are printed.
Log In to solve the Question