Candidates applying for IOS Engineer roles take an average of 21 days to get hired, when considering 1 user submitted interviews for this role. To compare, the hiring process at Superhuman overall takes an average of 31 days.
Here are the most commonly searched roles for interview reports -
I applied online. The process took 3 weeks. I interviewed at Superhuman (Berlin) in May 2025
Interview
After the initial recruiter call, I was invited to a live coding challenge and asked to solve 2 easy/medium-level LeetCode problems. The interviewer gave me hints to solve the given problems.
Interview questions [2]
Question 1
Given a sorted (int array) and a target integer in the array. Rotate the array (target integer) times and return the index of that (target integer) in the array. if that target integer does not exist in the array, return -1.
nums: [0,1,2,3,4,5,6,7,8]
target integer: 6
rotated nums: [6,7,8,0,1,2,3,4,5]
should return 0
Hints: Try to find pivot element with binary search. In binary search, we calculate the pivot index like this: (lower bound + upper bound) / 2. Bu this can be changed based on need.
You are given a matrix of characters and a word that is present in the matrix. Letters of the given word can be placed in the neighboring cell, not on diagonals. So, a letter should be searched in 4 cells(left, right, up, down).
Try to find the given word in the given matrix.
I applied through a recruiter. The process took 3 weeks. I interviewed at Superhuman (San Francisco, CA) in Oct 2024
Interview
A recruiter reached out to me on LinkedIn regarding the role. I sent her my resume and we scheduled a call to discuss the position and my experience. The role is remote first and there's an office in the city I currently live in however I was told I would be required to move to SF. I would be working remotely from SF but would need to come in to the office 1-2 weeks a quarter. I found it very strange that I would need to move to work remotely but continued with the process.
I was then given a technical interview which was HackerRank which was fine but got tripped up with the math. I was rejected after.
I applied through an employee referral. The process took 1 week. I interviewed at Superhuman (Berlin) in Apr 2023
Interview
HR Interview, pretty standard 30 minutes. Getting to know each other.
Interview with Engineering Manager: Work practices, interaction and communication with teammates, ways of working. Was very friendly and approachable.
Technical Interview: Small introduction about team structure. Questions about Swift Development Language along with iOS General Knowledge. Followed up with Leetcode
Interview questions [1]
Question 1
Leetcode question about updating character range in Strings