Exactly k non zero digits | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Exactly k non zero digits

program must print the integers from x to y having exactly k non zero digits x,y,k=map(int,input().split()) for i in range(x,y+1): while i>0: count=0 a=i%10 if a!=0: count+=1 i=i//10 if count==k: print(i,end=' ') Input: 100 200 2 expected output: 101 102 103 104 105 106 107 108 109 110 120 130 140 150 160 170 180 190 but I am not getting any output Is my code correct?

14th Jun 2020, 8:54 AM
VARSHA
5 Answers
14th Jun 2020, 10:03 AM
VARSHA
14th Jun 2020, 9:16 AM
VARSHA
0
𝐊𝐢𝐢𝐛𝐨 𝐆𝐡𝐚𝐲𝐚𝐥 Great , the above code passed Many thanks for helping me out☺️☺️
14th Jun 2020, 9:41 AM
VARSHA
0
Is my logic correct there? 🤔🤔🤔 I'm very confused 𝐊𝐢𝐢𝐛𝐨 𝐆𝐡𝐚𝐲𝐚𝐥
14th Jun 2020, 9:44 AM
VARSHA
14th Jun 2020, 9:57 AM
VARSHA