Calico Life Sciences Interview Questions

Calico Life Sciences Interview Guides

Click or hover over a slice to explore questions for that topic.
Machine Learning
(21)
Data Structures & Algorithms
(15)
SQL
(14)
Behavioral
(10)
Product Sense & Metrics
(7)

Calico Life Sciences Interview Questions

Practice for the Calico Life Sciences interview with these recently asked interview questions.

QuestionTopicDifficulty
Data Structures & Algorithms
Medium

Given a sorted list of integers ints with no duplicates, write an efficient function nearest_entries that takes in integers N and k and does the following:

Finds the element of the list that is closest to N and returns that element along with the k-next and k-previous elements of the list.

Notes:
1. If k is large enough to go out of the bounds of ints, return all entries up to that bound but do not throw an error. 2. If N is not an entry in ints and there are two values equally close to N, use the lower value as your starting point.

Examples:

Input:

#Example 1:
ints = [1,2,3,4,5,6,7,8,9]
N = 4
k = 2
def nearest_entries(ints, N, k) -> [2,3,4,5,6]

#Example 2:
ints = [1,3,4,6,8]
N = 5
k = 1
def nearest_entries(ints, N, k) -> [3,4,6]

#Example 3:
ints = [1,3,4,7,9,11,15,22,77]
N = 22
k = 4
def nearest_entries(ints, N,k) -> [7, 9, 11, 15, 22, 77]
Data Structures & Algorithms
Hard
Machine Learning
Medium
Loading pricing options

View all Calico life sciences questions

Challenge

Check your skills...
How prepared are you for working at Calico life sciences?

Calico Life Sciences Salaries by Position

Data Scientist*
$131K
Data Scientist
Median: $131K
Mean (Average): $131K
Data points: 1

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

From the graph we can see that on average the Data Scientist role pays the most with a $131,000 base salary while the Data Scientist role on average pays the least with a $131,000 base salary.

Discussion & Interview Experiences

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