Skip to contentSkip to footer
  • Community
  • Jobs
  • Companies
  • Salaries
  • For employers
      Notifications

      Loading...

      Elevate your career

      Discover your earning potential, land dream jobs, and share work-life insights anonymously.

      employer cover photo
      employer logo
      employer logo

      TikTok

      Part of ByteDance

      Engaged employer

      About
      Reviews
      Pay and benefits
      Jobs
      Interviews
      Interviews
      Related searches: TikTok reviews | TikTok jobs | TikTok salaries | TikTok benefits
      TikTok interviewsTikTok Software Engineer interviewsTikTok interview


      Glassdoor

      • About / Press
      • Awards
      • Blog
      • Research
      • Contact Us
      • Guides

      Employers

      • Free Employer Account
      • Employer Centre
      • Employers Blog

      Information

      • Help
      • Guidelines
      • Terms of Use
      • Privacy and Ad Choices
      • Do Not Sell Or Share My Information
      • Cookie Consent Tool
      • Security

      Work With Us

      • Advertisers
      • Careers
      Download the App

      • Browse by:
      • Companies
      • Jobs
      • Locations
      • Communities
      • Recent posts

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls" and logo are proprietary trademarks of Glassdoor LLC.

      Company Bowl sample

      Want the inside scoop on your own company?

      Check out your Company Bowl for anonymous work chats.

      Bowls

      Get actionable career advice tailored to you by joining more bowls.

      Followed companies

      Stay ahead in opportunities and insider tips by following your dream companies.

      Job searches

      Get personalised job recommendations and updates by starting your searches.

      Software Engineer Interview

      3 May 2026
      Anonymous interview candidate
      No offer
      Neutral experience
      Difficult interview

      Application

      I interviewed at TikTok

      Interview

      Recruiter call aligns role and experience. Technical screening tests coding (DSA + practical tradeoffs). System design is critical—design large-scale, real-time systems (feeds, messaging, analytics), focusing on data flow, scalability, and tradeoffs. Strong candidates emphasize production-ready thinking, high throughput, and clear architecture decisions over textbook answers.

      Other Software Engineer interview reviews for TikTok

      Software Engineer Interview

      3 Jun 2026
      Anonymous interview candidate
      San Francisco, CA
      No offer
      Neutral experience
      Difficult interview

      Application

      I interviewed at TikTok (San Francisco, CA)

      Interview

      OA - 1 arrays Medium, 1 Trie Hard. I had 45 minutes to complete that. I was able to do the medium in about 15-20 minutes but I am not that great with trie ds so I was not able to finish.

      Interview questions [1]

      Question 1

      2 Leetcode questions were asked
      Answer question

      Software Engineer Interview

      26 May 2026
      Anonymous interview candidate
      Sydney
      No offer
      Neutral experience
      Difficult interview

      Application

      I interviewed at TikTok (Sydney)

      Interview

      Four Round Process Phone Interview with Human Resources Coding Round; 1 DSA Leetcode Medium Q Coding Round: 2 DSA Leetcode Medium Q Manager Round: System Design Q and behavioural Q

      Interview questions [1]

      Question 1

      LRU Cache Question on Leetcode
      Answer question

      Software Engineer Interview

      22 May 2026
      Anonymous employee
      Accepted offer
      Positive experience
      Difficult interview

      Application

      I interviewed at TikTok

      Interview

      It took about four weeks from application to offer, longer than I initially expected. The initial phone screen was straightforward, covering my resume and some basic algorithms. Then came the technical rounds, which were challenging. One question on minimum window substrings had me diving into a sliding-window approach using pointers and hashmaps. Funny enough, I recognized it mid-round as something I’d practiced on PracHub just days before. After a final system design discussion, I received the offer and happily accepted.

      Interview questions [1]

      Question 1

      Given two strings s and t, return the minimum window substring of s that contains every character of t including duplicates, or an empty string if no such window exists. Walk through the sliding-window approach using two pointers and a character-frequency hashmap, analyze the O(|s| + |t|) time complexity, and discuss how to adapt it when t contains characters not present in s or when s arrives as a stream that cannot be fully buffered.
      Answer question