Step Interview Questions

Step Interview Guides

Click or hover over a slice to explore questions for that topic.
Data Structures & Algorithms
(20)
Product Sense & Metrics
(4)
Behavioral
(3)
Machine Learning
(3)
SQL
(1)

Step Interview Questions

Practice for the Step 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]
]
Machine Learning
Easy
Data Structures & Algorithms
Easy
Loading pricing options

View all Step questions

Challenge

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

Discussion & Interview Experiences

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