Impact Analytics Interview Questions

Impact Analytics Interview Guides

Click or hover over a slice to explore questions for that topic.
Data Structures & Algorithms
(84)
SQL
(61)
Machine Learning
(59)
Probability
(32)
Product Sense & Metrics
(23)

Impact Analytics Interview Questions

Practice for the Impact Analytics interview with these recently asked interview questions.

QuestionTopicDifficulty
Data Structures & Algorithms
Hard

Given a list of integers, and an integer N, write a function sum_to_n to find all combinations that sum to the value N.

Example: 

Input:

integers = [2,3,5]
N = 8

Output:

def sum_to_n(integers, N) ->
 [
  [2,2,2,2],
  [2,3,3],
  [3,5]
]
SQL
Medium
Data Structures & Algorithms
Easy
Loading pricing options

View all Impact Analytics questions

Challenge

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

Discussion & Interview Experiences

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