A tough TCS Codevita 2020?

Well don’t worry. TCS selects candidates based on which questions they solved not exactly how many questions. So if you have this kinda graph. Then if you have solved atleast 1 then you are good

yep i did one completely , one TLE and one public cases , let’s see how it goes . hackwithinfy and infytq were handled a lot better imo

I dont think TCS considers public test cases

doesn’t really matter , one got solved completely and graph looked like that so i wouldn’t worry about my rank much , im guessing a good rank , only one batch had 2 qstns which were available on leetcode and gfg and few batches had qstns like minimize the sum , constellation , count pairs which were fairly easier .Healthier graphs everwhere compared to this.

Even I believe it was hard, I could solve 4 sums in mockvita. But only 2 today. What is the probability of me getting into next round?

P.S: In my set, almost 2000 had solved two question, and couldn’t see any AC for more than 2 questions.

this was my graph and I was able to do 2 completely and 2 partially, what are my chances.

My first question was something about starts and constellations and second was about prime groups did those two anyone with same questions.

1 Like

I was able to solve one question & that too Presentation Error. First time for me!:woman_shrugging: Can’t say is it good or okay or bad? But I’m happy that I participated :heart:

1 Like

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 :slight_smile:

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

1 Like

if u r in final year then they call u otherwise not , for interview u must solve at least 2 questions .

1 Like

I did 1 question is there any possibility to get that?

1 Like

Pray to GOD … btw are u in final year ?

Yes




After seeing the questions of Zone 1 and contest report of Zone 1

Zone 2 guys be like -

18 Likes

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

2 Likes