My first question was something about starts and constellations and second was about prime groups did those two anyone with same questions.
I was able to solve one question & that too Presentation Error. First time for me!
Can’t say is it good or okay or bad? But I’m happy that I participated
…
How many questions do we need to solve
to get an interview call?
It would be helpful if you all post your set’s questions so that we can have a look on all questions. Thankyou 
Minimize the Sum : xJiHQN - Online C++0x Compiler & Debugging Tool - Ideone.com
Railway Stations : SRj3im - Online C++0x Compiler & Debugging Tool - Ideone.com
Constellations : dhr0mt - Online C++0x Compiler & Debugging Tool - Ideone.com
if u r in final year then they call u otherwise not , for interview u must solve at least 2 questions .
I did 1 question is there any possibility to get that?
Pray to GOD … btw are u in final year ?
Yes
brother for constellation problem …it was just implemetation one …i struggle for it three hours to find corner testcases…ended with partial one…could you plz tell just some corner testcases which are some difficult to assume for the code…plz tell bro…is tcs considers partial testcases for evalution???
if you want to check code…
cook your dish here
try:
n=int(input()) #number of columns
#for i in range(3):
ss1=input()#input string1
ss2=input()#input string2
ss3=input()#input string3
res="" #res is string variable which stores output…
s1=’’
s2=’’
s3=’’
for i in ss1:
if(i!=’ ‘):
s1+=i
for i in ss2:
if(i!=’ ‘):
s2+=i
for i in ss3:
if(i!=’ ‘):
s3+=i
lim=len(s1)
i=0
j=0
while(i<lim):
if(s1[i]==’#’):
res=res+’#’
i=i+1
elif(s1[i]==’.’ and s2[i]==’.’ and s3[i]==’.’):
i=i+1
else:
if(s1[i]==’’ and s1[i+1]==’.’ and s1[i+2]==’’):
res=res+‘U’
elif(s1[i]==’.’ and s1[i+1]==’’ and s1[i+2]==’.’):
res=res+‘A’
elif(s1[i]==’’ and s1[i+1]==’’ and s1[i+2]==’’ and s2[i]==’.’ and s2[i+2]==’.’):
res=res+‘I’
elif(s1[i]==’’ and s1[i+1]==’’ and s1[i+2]==’’ and s2[i]==’’ and s2[i+1]==’.’ and s2[i+2]==’*’):
res=res+‘O’
else:
res=res+‘E’
i=i+3
print(res)
except EOFError:
pass
except ValueError:
pass
except :
pass
bro is tcs considers partial testcases for the evalution???
All the Questions From TCS Code Vita Zone 1-sKSama CS HUB: TCS CODE VITA 2020 Zone 1
Solutions With Explanations will soon be posted Here- sKSama - YouTube
You are missing a few corner cases like you are assuming that if
s1[i]==’ *’ and s1[i+1]==’.’ and s1[i+2]==’* ’
then the character is ‘U’ and you are not checking the remaining 6 characters. It is possible that the other characters required for ‘U’ don’t match ,ie, random '*'s may be present…so you need to check for all the characters…same is applicable for ‘#’ as well…you need to check all the elements in the column if they are ‘#’ or not…and then only append ‘#’ to the output string.
I hope, I was clear. 
Which questions you were had? This one seems to be the toughest one. You will be selected for sure.
thankyou
May b you need to optimize the time complexity
Sahi me bhai

but in question they are not mentioned that any random star present…ie;stars of symbols other than AEIOU is possible???thats why i assume star will be only in one of them…contest questions are not clear bro…
in codekart qustion also in statement of DEC (decrement) is not corrected written…there is mistake in that command…




