Given an array of integers, find the elements which have an even number of digits.
Array: [42, 564, 5775, 34, 123, 454, 1, 5, 45, 3556, 23442]
Answer: 42, 5775, 34, 45, 3556
The order of the returned elements should be the same as the order of the initial array.
The first line contains 'T' denoting the no. of test cases.
Next T lines each contain a number 'n' denoting the number of elements, followed by n space-separated numbers denoting the array elements.
T lines contain n numbers denoting the elements with even digits.
2
11 42 564 5775 34 123 454 1 5 45 3556 23442
3 11 4 200
42 5775 34 45 3556
11
0 <= T <= 100
1 <= N <= 100
0 <= array element <= 106