Twitter/X

Twitter/X Software Engineer Technical Screen Questions

5+ questions from real Twitter/X Software Engineer Technical Screen rounds, reported by candidates who interviewed there.

5
Questions
1
Topic Areas
10+
Sources

What does the Twitter/X Technical Screen round test?

The Twitter/X technical screen covers core Software Engineer skills in a structured interview format. Candidates should expect a mix of coding problems, technical knowledge questions, and scenario-based discussions.

Top Topics in This Round

Twitter/X Software Engineer Technical Screen Questions

YOE: ~6.5 years Location: Bangalore After clearing Telephonic screening round, I had HM call. Post that online coding round was scheduled. I was asked to solve #LC word search. I was able...

Solution 4 def closestNumbers(A): A.sort() D=[A[i+1] - A[i] for i in range(len(A)-1)] target=min(D) X=[[A[i],A[i+1]]for i,d in enumerate(D) if d==target] for i in range(0,len(X)): print(X[i][0], X[i][1])

Solution 3 def countMoves(numbers): # Write your code here numbers.sort(reverse=True) if len(numbers)==1: return 0 res=0 for i in range(1,len(numbers)): res+=-(numbers[i]-numbers[i-1]) *i return res

Question asked: Implement a feature active_twitterati which simulates the following operations. active_twitterati has two functions: store - Pushes a twitterati_id on a data structure whenever a user tweets. find_best_twitterati - Removes and returns...

Tough Twitter Question

Algorithms 2021

I was having an intervew at Twitter several months ago and I was asked to develop a data structure that have add(key, value) remove(key, value) getLast() Looks easy, but we need to make...

See All 5 Questions from This Round

Full question text, answer context, and frequency data for subscribers.

Get Access