Me postulé a través de una facultad o universidad. Acudí a una entrevista en Infosys (Chennai) en dic 2025
Entrevista
after the intial coding test there was pen and paper coding test .
i got an string based pattern recognising question.he was not satisfied with the brute force approach...next was resume based question
Preguntas de entrevista [1]
Pregunta 1
s = input()
for i in range(len(s)):
seen = set()
for c in s[i:]:
if c in seen: break
seen.add(c)
print(c, end="")
print()
This is pretty much the code i wrote that day, might not be exactly what i wrote that day but yeah i used sets and this loop logic