Taro Logo

Application-Engineer Interview Experience - India

November 1, 2024
Positive ExperienceNo Response

Process

There were a total of 3 rounds:

  • First round: Online coding assessment, with questions ranging from Easy to Medium.
  • Second round: Online interview. Normally, panelists ask 2-3 array and string questions, but I was asked only one. The interviewer told me if I could finish it in 30 minutes, I would be selected for the next round.
  • Third round: Managerial round. We had a conversation for 45 minutes based on my resume, and I was asked in-depth questions.

Questions

Dungeon Adventure:

You are given a 0-indexed 2D matrix dungeon of size m x n, where each cell (r, c) represents:

  • A wall if dungeon[r][c] = 0,
  • A room with dungeon[r][c] treasure if dungeon[r][c] > 0.

A hero can start from any treasure room (r, c) and can perform the following actions an unlimited number of times:

  • Collect all the treasure in the current room (r, c),
  • Move to an adjacent room that contains treasure.

Your task is to help the hero find the maximum treasure they can collect, starting from the best possible treasure room. If there are no treasure rooms in the dungeon, return 0.

An adjacent room to (r, c) is defined as any of the following (if they exist):

  • (r, c + 1) (right)
  • (r, c - 1) (left)
  • (r + 1, c) (down)
  • (r - 1, c) (up)

Interview Statistics

The following metrics were computed from 1 interview experience for the Twilio Application-Engineer role in India.

Success Rate

100%
Pass Rate

Twilio's interview process for their Application-Engineer roles in India is incredibly easy as the vast majority of engineers get an offer after going through it.

Experience Rating

Positive100%
Neutral0%
Negative0%

Candidates reported having very good feelings for Twilio's Application-Engineer interview process in India.