C3 AI Interview Question

Given a time series data. How will you check if time when maximum users have logged in?

Interview Answers

Anonymous

Feb 8, 2018

Keep the count based on in and out timing.

Anonymous

May 18, 2020

Use stack. Log In => push in, Log out => pop out. Get the time when the stack len is the longest