Intuitive AI / Cloud recently visited our campus for placements, and I
wanted to share my Round 1 (Online Assessment) experience to help
others preparing for similar roles.
The first round was conducted on an online assessment platform and
consisted of three sections:
This section included MCQs from core computer science subjects such as:
Some questions were also Python-based conceptual questions, testing
basic understanding of Python syntax and behavior.
The questions were mostly conceptual and moderate in difficulty.
This section included:
Most questions were time-consuming and tricky, especially the
logical puzzles.
Difficulty: Hard
In the coding section, we were allowed to choose from the following
languages:
Number of Visible People in a Queue
https://leetcode.com/problems/number-of-visible-people-in-a-queue/
The problem asks to determine how many people each person can see to
their right in a queue based on heights.
A person can see another person if all people between them are shorter
than the minimum height of the two.
The optimal solution uses a Monotonic Stack to efficiently process
the heights.
Difficulty: Hard
This problem was based on a room ordering / exam redistribution
scenario.
Linda collects exam papers from different rooms and redistributes them
for peer review. The students are located in multiple rooms with
different sizes.
Input
4
2 3 3 1Output
2 3 4 1This problem required greedy reasoning and ordering rooms based on the
number of students.
Difficulty: Hard
From discussions after the test, it seems that the coding questions were
randomized, but most were hard-level LeetCode problems.
Some questions asked were:
https://leetcode.com/problems/minimum-insertion-steps-to-make-a-string-palindrome/
Concepts involved:
https://leetcode.com/problems/best-time-to-buy-and-sell-stock-iv/
Concepts involved:
Section Difficulty
CS Fundamentals Medium
Aptitude Hard
Coding Hard
The coding questions required strong knowledge of:
Overall, the round was quite challenging, especially the coding
section.
Hope this helps anyone preparing for Intuitive AI / Cloud
interviews.