Facebook Interview Question Formatting a collection of times for a movie show time output using Linq is preferred

0 votes
class TimeObject
{
    DateTime time;
    bool isMatinee;
}

Given: {8:00, 9:30, 11:00, 12:10, 2:00, 4:00, 5:20} -- a collection of TimeObjects

Output: (8:00AM, 9:30, 11:00, 12:10PM, 2:00), 4:00, 5:20 -- return a string, oh and AM/PM should be picked up from localization strings

Caveats: AM/PM only shown for first time, ( ) encloses those elements whose matinee bool was set to true.

The problem is that I don't know how to print the above string.

Although I said that I was familiar with C#, the interviewer insisted on knowing how to accomplish this with the fewest lines of understandable code possible, ideally using LINQ. I could write it to the console, he explained, but I would have to remember to localise the AM and PM.

I definitely messed up by creating a slew of interim collections and other nonsense. It's simply a few lines of LINQ, he claims. I tried a few other things, but he kept directing me back to LINQ.

Jun 11, 2022 in C# by jyoti
• 1,240 points

edited Mar 4 19 views

No answer to this question. Be the first to respond.

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP