↳
I solved this problem correctly and explained what I did , also during writing each line I was explaining why I am writing it. But still no next round . Very useless .... I suggest do not spend your energy for this dead old company. Menos
↳
Could you please share the leetcode difficulty of the problems asked during the interview? Menos
↳
The key in these questions is to cover the fundamentals, and be ready for the back-and-forth with the interviewer. Might be worth doing a mock interview with one of the Oracle or ex-Oracle Principal Software Engineer experts on Prepfully? They give real-world practice and guidance, which is pretty helpful. prepfully.com/practice-interviews Menos
↳
This is a classic minimal window problem described in detail here - http://www.leetcode.com/2010/11/finding-minimum-window-in-s-which.html. Menos
↳
import java.util.*; class Untitled { public static void main(String[] args) { String[] strs = {"a","b","d","e","x","b","z","s","x","c","e","c","d","b"}; String[] pattern = {"b","z","x"}; getMin(strs, pattern); } private static void getMin(String[] strs, String[] pattern){ //initialize the set HashSet set = new HashSet(); for(int i = 0; i map = new HashMap(); for(head = 0; head map, String[] strs, int position){ if (!map.containsKey(strs[position])) return true; if (map.get(strs[position]) <= 1) return false; return true; } } Menos
↳
Could you please explain this??
↳
If anyone needs the code which I wrote, then comment & I will share the code. As this code will give you basic setup at least, so that you can concentrate to develop your innovative ideas. Menos
↳
Just don't believe on the positive Glassdoor reviews for a company which has recently started. Menos
↳
Don't believe on the positive reviews directly, these companies fake such positive feedback to trap the talent & may be at low price. Menos
↳
There will be many documents in a document database. The labelling system must use machine learning to label into different categories. Eg help desk, system document, technical. There will a small train dataset available but not entirely reliable. Menos
↳
The correct answer would be to use a combination of weak learning methods and gradually incorporate feedback and make it stronger Menos
↳
APi rate limiter was really simple, just look at uber/ratelimit on git and thats it. Rest was farily easy Menos
↳
first ball --- throw it every floor from the iteration the second balls breaks second ball --- throw it every 3 or 4 or 5 floor ... When the second ball breaks, you know there are only 3 or 4 or 5 floors to check ... O (log n) complexity ... best case O(1) Menos
↳
i'll go with binary search procedure..since it stands a better chance
↳
think over !!
↳
LC Medium or Hard.
↳
LC Medium or Hard?
↳
Through questions like this, interviewers are mostly trying to test your skillset (and its relevance to the role) as robustly as possible, so be prepared for multiple offshoots and followups. It could be a useful exercise to do mocks with friends or colleagues in Palo Alto Networks to get a real sense of what the interview is actually like. Alternatively Prepfully has a ton of Palo Alto Networks Principal Software Engineer experts who provide mock interviews for a pretty reasonable amount. prepfully.com/practice-interviews Menos
↳
The key in these questions is to cover the fundamentals, and be ready for the back-and-forth with the interviewer. Might be worth doing a mock interview with one of the Dell or ex-Dell Principal Software Engineer experts on Prepfully? They give real-world practice and guidance, which is pretty helpful. prepfully.com/practice-interviews Menos
↳
How long did it take for you receive the offer after the final interview?
↳
Did your technical interviews include coding on a white board?
↳
what was the data structure implementation, if you don't mind?
↳
How soon were these interviews scheduled ?
↳
Through questions like this, interviewers are mostly trying to test your skillset (and its relevance to the role) as robustly as possible, so be prepared for multiple offshoots and followups. It could be a useful exercise to do mocks with friends or colleagues in Dell to get a real sense of what the interview is actually like. Alternatively Prepfully has a ton of Dell Principal Software Engineer experts who provide mock interviews for a pretty reasonable amount. prepfully.com/practice-interviews Menos
↳
Used HashSet to keep track of string that were already seen.
↳
1) Build a Trie and just then just walk and print it then... 2) Like above, use hash, however, this is challenging if you can have unbounded string... as definition of string.... char-sequence-until-null so potential input can one huge sequence.... if it is known that string can be resonably 256 char long at max and all english letter then you can make hash function. Menos
↳
Assuming that TV shows start and end at the 1 min interval (ie won't need to set the start to 1:35:28), there are 1440 mins in 24 hours. One solution would be to have an 8 digit VCR Plus code: xxxxyyyy The first 4 digits will be the start time, second 4 digits will be the end time. This will take 8 bytes of space. Menos
↳
Actually the VCR+ has 30 minute resolution. It packs the info into binary bits, then converts from binary to decimal, saving digits. The Java code is here: http://www.gginc.biz/java/vcr1.html Menos