Tekion || Ghosted || WTF

tekion logo
tekion
SDE-1No Offer
December 21, 20232 reads

Summary

I interviewed with Tekion for an SDE-1 role, facing a problem-solving round with Java/Spring Boot questions and two coding challenges: string abbreviation and Word Break. Unfortunately, I was ghosted by HR after the first round, preventing further interview stages.

Full Experience

Recently, I interviewed with Tekion for an SDE-1 Role. The first round focused on Problem Solving. I was asked some questions on Java and Spring Boot. Following that, I tackled a coding question about string abbreviation (e.g., if s="AKNS", then abbr="A2S" is a valid abbreviation).

The third question was the classic Word Break problem. I managed to answer all the questions, though I needed a small hint from the interviewer to arrive at the optimal approach for Word Break.

The second and third rounds were scheduled to be for Low-Level Design (LLD) and Hiring Manager (HM) discussions, but I was unfortunately ghosted by HR; they stopped picking up calls and responding to emails. This experience, especially after being laid off, made the job search process quite exhaustive.

Interview Questions (2)

Q1
String Abbreviation Check
Data Structures & AlgorithmsMedium

Given a string s and an abbreviation abbr, determine if abbr is a valid abbreviation of s. For example, if s = "AKNS", then abbr = "A2S" is a valid abbreviation. The abbreviation can contain numbers representing consecutive skipped characters.

Q2
Word Break
Data Structures & AlgorithmsMedium

Given a string s and a dictionary of strings wordDict, return true if s can be segmented into a space-separated sequence of one or more dictionary words. The same word in the dictionary may be reused multiple times in the segmentation. You may assume the dictionary does not contain duplicate words.

Discussion (0)

Share your thoughts and ask questions

Join the Discussion

Sign in with Google to share your thoughts and ask questions

No comments yet

Be the first to share your thoughts and start the discussion!