Viewing profile — navinp1912
navinp1912
HN member- Joined
- Fri, Jul 12, 2013, 4:10 AM UTC
- HN karma
- 2
- Public activity
- 8 items
- HN profile
- View on Hacker News ↗
About navinp1912
No profile information was provided.
Recent public activity
-
comment
Comment #10730956
Agree whole heartedly. I was asking this thinking of open( ,O_DIRECT|O_RDONLY); that bypasses buffer cache and read directly from the disk that atleast solves buffer cache i guess.…
-
comment
Comment #10728827
How does checksumming help if the data is in cache and waiting to be written ? For ex: I have 1MB of data, i write it but it stays in buffer cache after written and when you do che…
-
comment
Comment #10725862
Can someone give similar hackerrank/job challenge + resume links for other orgs ?
-
comment
Comment #9921832
I'm using HP ZBook 15 G2 Mobile Workstations with ubuntu 14 LTS since last 3 months. The only thing i miss is SSD that i didn't choose in my customization. Has 16GB RAM, i7 . I swi…
-
comment
Comment #9088909
>>>I won't go into the details that led up to this event Fix the problem and then go ahead and do whatever you want. Atleast you would be helping one other person. One you have cro…
-
comment
Comment #6032057
If you move what while (topK--) into the map loop , it becomes an online code for topK whereas what you wrote is an offline . If you want offline then pushing it into a priority_qu…
-
comment
Comment #6030874
string s,f; map M; set > S; while(cin >> s) { M[s]++; int x=M[s]; if(x>1) S.erase(make_pair(x-1,s)); S.insert(make_pair(x,s)); } set >::reverse_iterator it=S.rbegin(); int topK=10;…
- comment