Data Scientist Internship Interview Questions

40,359 data scientist internship interview questions shared by candidates

We are looking for a program that manages disjointed intervals of integers. E.g.: [[1, 3], [4, 6]] is a valid object gives two intervals. [[1, 3], [3, 6]] is not a valid object because it is not disjoint. [[1, 6]] is the intended result. Empty array [] means no interval, it is the default/start state. We want you to implement two functions: add(from, to) remove(from, to) Here is an example sequence: Start: [] Call: add(1, 5) => [[1, 5]] Call: remove(2, 3) => [[1, 2], [3, 5]] Call: add(6, 8) => [[1, 2], [3, 5], [6, 8]] Call: remove(4, 7) => [[1, 2], [3, 4], [7, 8]] Call: add(2, 7) => [[1, 8]] etc. =================
avatar

Data Scientist

Interviewed at Jerry

4.1
Apr 27, 2021

We are looking for a program that manages disjointed intervals of integers. E.g.: [[1, 3], [4, 6]] is a valid object gives two intervals. [[1, 3], [3, 6]] is not a valid object because it is not disjoint. [[1, 6]] is the intended result. Empty array [] means no interval, it is the default/start state. We want you to implement two functions: add(from, to) remove(from, to) Here is an example sequence: Start: [] Call: add(1, 5) => [[1, 5]] Call: remove(2, 3) => [[1, 2], [3, 5]] Call: add(6, 8) => [[1, 2], [3, 5], [6, 8]] Call: remove(4, 7) => [[1, 2], [3, 4], [7, 8]] Call: add(2, 7) => [[1, 8]] etc. =================

Viewing 2121 - 2130 interview questions

Glassdoor has 40,359 interview questions and reports from Data scientist internship interviews. Prepare for your interview. Get hired. Love your job.