A binary number is a number composed of 0s and 1s.
Given a binary number, check if the number has adjacent zeroes or not, i.e., if two zeroes are present side by side or not.
The first line contains T - no. of test cases.
Next T lines each containing one binary number N.
"Yes" if the number has adjacent zeroes
"No" if the number does not have adjacent zeroes
3
1011
10000
1010101001
No
Yes
Yes
0 < T <= 100000
Len(N) < 30