Calico Life Sciences Interview Questions

Calico Life Sciences Interview Guides

Click or hover over a slice to explore questions for that topic.
Machine Learning
(17)
Data Structures & Algorithms
(14)
SQL
(11)
Behavioral
(6)
Statistics
(4)

Calico Life Sciences Interview Questions

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

QuestionTopicDifficulty
Data Structures & Algorithms
Hard

We’re given a list of at least three numbers named sides. Each entry in sides represents the length of a side of a triangle.

Write a function possible_triangles to determine the number of possible triangles that can be formed using the given side lengths.

In the case that more than three side lengths are given, there may be several possible triangles.

Note: If there are multiple equal side lengths in the list, we consider them as distinct sides.

Examples:

Input:

#Example 1:
sides = [3, 3, 3]
def possible_triangles(sides) -> 1

#Example 2:
sides = [3, 3, 3, 3]
def possible_triangles(sides) -> 4

#Example 3:
sides = [1, 2, 3.5]
def possible_triangles(sides) -> 0
Data Structures & Algorithms
Medium
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.