Lookout Interview Questions

Lookout Interview Guides

Click or hover over a slice to explore questions for that topic.
Data Structures & Algorithms
(76)
SQL
(58)
Machine Learning
(52)
Probability
(30)
Statistics
(20)

Lookout Interview Questions

Practice for the Lookout interview with these recently asked interview questions.

QuestionTopicDifficulty
Data Structures & Algorithms
Medium

You are given two non-empty linked lists representing two non-negative integers. Each list contains a single number, where each item in the list is one digit. The digits are stored in reverse order.

Task: Add the two numbers and return the sum as a linked list, also with the digits in reverse order. You may assume the two numbers do not contain any leading zeros, except the number 0 itself.

Example 1:

Input:

l1 = 2->4->3->null
l2 = 5->6->4->null

Output:

addTwoNumbers(l1, l2) = 7->0->8->null

Explanation: 342 + 465 = 807.

Example 2:

Input:

l1 = 0->null
l2 = 0->null

Output:

addTwoNumbers(l1, l2) -> 0->null

Explanation: 0 + 0 = 0.

SQL
Easy
SQL
Easy
Loading pricing options

View all Lookout questions

Challenge

Check your skills...
How prepared are you for working at Lookout?

Lookout Salaries by Position

$99K
$197K
Software Engineer
Median: $141K
Mean (Average): $145K
Data points: 4

Most data science positions fall under different position titles depending on the actual role.

From the graph we can see that on average the Software Engineer role pays the most with a $145,000 base salary while the Software Engineer role on average pays the least with a $145,000 base salary.

Discussion & Interview Experiences

?
There are no comments yet. Start the conversation by leaving a comment.

Discussion & Interview Experiences

There are no comments yet. Start the conversation by leaving a comment.

Jump to Discussion