Scientific Games Interview Question for Dev Leads


Country: India




Comment hidden because of low score. Click to expand.
0
of 0 vote

is the file on disc? so the bottle neck is disc I/O
is the file on memory? so, the bottle neck is memory
is the file on multiple machines: good, we can work in parallel: assign blocks of x GB to m machines, take care that the blocks overlap so at least one machine has the whole pattern ...

- Chris August 12, 2017 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Read entire file in Memory.
It involves 2 actions. Start 32 threads working in parallel on chunks of every roughly 300Mb.
Because searching is CPU intensive there is no point creating more than 32 threads since there are 32 cores and all of them will be busy.

How to optimize searching further:
Create a trie of every chunk where each node stores the word along with the line number that it appears in.

- ITWala March 18, 2018 | Flag Reply


Add a Comment
Name:

Writing Code? Surround your code with {{{ and }}} to preserve whitespace.

Books

is a comprehensive book on getting a job at a top tech company, while focuses on dev interviews and does this for PMs.

Learn More

Videos

CareerCup's interview videos give you a real-life look at technical interviews. In these unscripted videos, watch how other candidates handle tough questions and how the interviewer thinks about their performance.

Learn More

Resume Review

Most engineers make critical mistakes on their resumes -- we can fix your resume with our custom resume review service. And, we use fellow engineers as our resume reviewers, so you can be sure that we "get" what you're saying.

Learn More

Mock Interviews

Our Mock Interviews will be conducted "in character" just like a real interview, and can focus on whatever topics you want. All our interviewers have worked for Microsoft, Google or Amazon, you know you'll get a true-to-life experience.

Learn More