-
Notifications
You must be signed in to change notification settings - Fork 238
/
index.html
730 lines (467 loc) · 31.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Elements of Programming Interviews</title>
<meta name="author" content="The EPI Team">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta property="og:site_name" content="Elements of Programming Interviews"/>
<meta property="og:image" content="undefined"/>
<link href="/favicon.png" rel="icon">
<!-- CSS -->
<link rel="stylesheet" href="/css/themes/cerulean.css" media="screen" type="text/css">
<link rel="stylesheet" href="/css/font-awesome.css" media="screen" type="text/css">
<link rel="stylesheet" href="/css/style.css" media="screen" type="text/css">
<link rel="stylesheet" href="/css/responsive.css" media="screen" type="text/css">
<link rel="stylesheet" href="/css/highlight.css" media="screen" type="text/css">
<link rel="stylesheet" href="/css/google-fonts.css" media="screen" type="text/css">
<!--[if lt IE 9]><script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<script src="/js/jquery-2.0.3.min.js"></script>
<!-- analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-37651502-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<nav id="main-nav" class="navbar navbar-inverse navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<button type="button" class="navbar-header navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">Elements of Programming Interviews</a>
<div class="collapse navbar-collapse nav-menu">
<ul class="nav navbar-nav">
<li>
<a href="/sample" title="PDF sampler">
<i class="fa fa-book"></i>PDF
</a>
</li>
<li>
<a href="/largeprint" title="Large Print">
<i class="fa fa-font"></i>Large Print
</a>
</li>
<li>
<a href="/archives" title="All Articles">
<i class="fa fa-archive"></i>All Posts
</a>
</li>
<li>
<a href="/about" title="About us">
<i class="fa fa-user"></i>About
</a>
</li>
<li>
<a href="/contact" title="Contact Information">
<i class="fa fa-mail-reply-all"></i>Contact
</a>
</li>
<li>
<a href="/solutions" title="All Solutions">
<i class="fa fa-list"></i>Solutions
</a>
</li>
<li>
<a href="/tags" title="All Tags">
<i class="fa fa-tags"></i>Tags
</a>
</li>
<li>
<a href="/bugs" title="Bug Reporting and Bug Log">
<i class="fa fa-bug"></i>Bugs
</a>
</li>
</ul>
</div>
</div> <!-- container -->
</nav>
<div class="clearfix"></div>
<div class="container">
<div class="content">
<div class="page-header page-header-inverse ">
<h1 class="title title-inverse ">Elements of Programming Interviews</h1>
</div>
<div class="row page">
<div class="col-md-9">
<div class="slogan">
<i class="fa fa-heart"></i>
Be prepared
</div>
<div id="top_search"></div>
<div class="mypage">
<!-- title and entry -->
<!-- display as entry -->
<h3 class="title">
<div class="date"> 2018-01-30 </div>
<div class="article-title"><a href="/2018/01/30/2018-01-30-judge-beta/" >EPI Judge Beta</a></div>
</h3>
<div class="entry">
<div class="row">
<p>The EPI Judge is now available at <a href="https://github.com/adnanaziz/EPIJudge" target="_blank" rel="external">GitHub</a>!</p>
<p>The installation is super-simple - there’s no install! You just <strong>download the project, point your IDE/editor to it</strong>, and start the code-debug cycle, with instant feedback!</p>
<p>EPI Judge consists of the following:</p>
<ul>
<li><strong>Stub programs</strong> for each problem in our book in Python, Java, and C++</li>
<li><strong>Test-cases</strong> that cover common corner-case and performance bugs </li>
<li>A <strong>framework</strong> for running these tests on your implementation on your machine</li>
</ul>
<p>The best interview preparation is a combination of hands-on practice over a representative set of problems with quality explanations. </p>
<p>The best way to get this hands-on practice is by developing, running, and debugging programs in the <strong>environment you’re most comfortable with</strong>, i.e., your own computer and IDE/editor:</p>
<ol>
<li>It’s a very fast compile-debug cycle, </li>
<li>you have complete control and visibility, both into the internal state and the test data, </li>
<li>you can use the features such as autocomplete, autoformat, linting, definiton lookups, etc., and</li>
<li>you can choose to use version control, to track your own progress, as well as to pull updates.</li>
</ol>
<p>This screenshot should give you a good idea of what it’s about. </p>
<p><img src="/img/judge-ide-example.png" width="650px"></p>
<p>A big shout-out to <a href="https://github.com/metopa" target="_blank" rel="external">Viacheslav Kroilov</a>, for applying his exceptional software engineering skills to make EPI Judge a reality.</p>
</div>
<a type="button" href="/2018/01/30/2018-01-30-judge-beta/#more" class="btn btn-default more">Read More</a>
</div>
<!-- display as entry -->
<h3 class="title">
<div class="date"> 2017-11-27 </div>
<div class="article-title"><a href="/2017/11/27/2017-11-27-buying-epi/" >Buying EPI</a></div>
</h3>
<div class="entry">
<div class="row">
<p>Please follow these instructions to make sure you get the most recent copy of EPI.</p>
<p>This is <strong>very important</strong> because you want the latest version of EPI, which is the one for which the <strong>seller</strong> is Amazon, which <strong>may not</strong> be the default seller on Amazon’s website.</p>
<p>First, <strong>do not</strong> click on add-to-cart from the landing page (since the default seller is not always Amazon). Instead click on the text highlighed in the figure below.<br><img src="/img/first_landing_page.png" width="600px"></p>
<p></p><p><br>Next, find Amazon in the list of sellers, as in the example below. (Note how Amazon is not at the top of the list!)<br><img src="/img/second_landing_page.png" width="600px"></p>
<p></p><p><br>Now add EPI to your cart, and you are good to checkout!</p>
</div>
<a type="button" href="/2017/11/27/2017-11-27-buying-epi/#more" class="btn btn-default more">Read More</a>
</div>
<!-- display as entry -->
<h3 class="title">
<div class="date"> 2017-05-26 </div>
<div class="article-title"><a href="/2017/05/26/2017-05-25-the-onsite/" >The Onsite</a></div>
</h3>
<div class="entry">
<div class="row">
<p>Many people find interviews intimidating. One reason is the intrinsically challenging problems. However, the challenge goes beyond that - the offices and the work environment are often quite different from anything you’ve seen. </p>
<p>As part of our goal to help readers succeed at interviews, we’ve compiled some pictures of what a typical campus looks like. The intention is to set you more at ease so that you can focus on the technical content.</p>
<p>These pictures are from Facebook (right by Adnan’s office), but are fairly representative.</p>
<p><strong>Come early</strong>, so you don’t have to struggle with finding the building, parking, etc. It’s fine to wait in the lobby for an hour, decompress with a copy of EPI!<br><img src="/img/IMG_4500.JPG"></p>
<p>The <strong>lobby</strong> - this is where the recruiter will come to pick you up.<br><img src="/img/IMG_4501.JPG"></p>
<p>The <strong>interview room</strong>. It’s a fixed room for the duration of the interview, though you may step out for lunch with a host. The interviewers/host/recruiter are supposed to ensure you stay on schedule, but there’s no harm in being proactive, e.g., not letting lunch run late.<br><img src="/img/IMG_4502.JPG"></p>
<p>Here the entire wall is writable, but it’s more common to have a <strong>whiteboard</strong>. Pro tip: consider taking your own markers, so that you can be sure they write well.<br><img src="/img/IMG_4503.JPG"></p>
<p>Dining hall - <strong>free yummy food</strong>, but don’t overeat and get into a food coma, or lose focus.<br><img src="/img/IMG_4509.JPG"></p>
<p>Nice <strong>campus</strong>, but it’s more important to focus on the interview. Do well and there will be plenty of time to appreciate these later.<br><img src="/img/IMG_4510.JPG"></p>
<p>Microkitchens are common.<br><img src="/img/IMG_4504.JPG"></p>
<p>Random office equipment.<br><img src="/img/IMG_4505.JPG"></p>
<p>Bike storage.<br><img src="/img/IMG_4506.JPG"></p>
</div>
<a type="button" href="/2017/05/26/2017-05-25-the-onsite/#more" class="btn btn-default more">Read More</a>
</div>
<!-- display as entry -->
<h3 class="title">
<div class="date"> 2017-04-03 </div>
<div class="article-title"><a href="/2017/04/03/2017-04-03-python/" >EPI in Python</a></div>
</h3>
<div class="entry">
<div class="row">
<p><img src="/img/python-cover-blog.png" width="200"></p>
<p>EPI in Python was the single biggest ask from our readers, and we’re very happy to tell you that EPI in now available in Python! You can buy it directly from Amazon <a href="http://bit.ly/epipython" target="_blank" rel="external">here</a>.</p>
<p>We’ve been using Python as our daily language at Facebook and Uber for quite some time now, and have grown to appreciate its power, versatility, and aesthetics. We wrote Python code for EPI Python from the ground up, and invested a great deal of effort to find the most efficient ways to solve interview problems in Python.</p>
<p>We hope you enjoy reading this book as much we we enjoyed writing it. As always, we look forward to hearing our readers thoughts and criticisms of our work. Feel free to drop us a line, come by in person if you are in the Bay Area. (Ice Cream at the Facebook Sweet Shop is always fun.)</p>
</div>
<a type="button" href="/2017/04/03/2017-04-03-python/#more" class="btn btn-default more">Read More</a>
</div>
<!-- display as entry -->
<h3 class="title">
<div class="date"> 2016-06-22 </div>
<div class="article-title"><a href="/2016/06/22/2016-06-22-variants/" >EPI variants and versions</a></div>
</h3>
<div class="entry">
<div class="row">
<p>This post clarifies questions we are often asked about EPI versions and variants.</p>
<p></p><h4>Variants</h4> There are <b>two basic printed variants</b>: Elements of Programming Interviews (which is in C++), and Elements of Programming Interviews in Java. <p></p>
<p>Each comes in <b>two sizes: 6” x 9” and 7” x 10”</b> - the latter uses a larger font and greater line spacing. The smaller and larger formats contain exactly the same content.</p>
<p>Amazon does a poor job of showing the variants. Here’s <b>direct links</b> to them:</p>
<ul>
<li>Elements of Programming Interviews (C++): <a href="https://www.amazon.com/Elements-Programming-Interviews-Insiders-Guide/dp/1479274836?ie=UTF8&ref_=zg_bsnr_2576_5" target="_blank" rel="external">6 x 9 format</a>, <a href="https://www.amazon.com/Elements-Programming-Interviews-Insiders-Guide/dp/1530462983/ref=tmm_pap_title_0?_encoding=UTF8&qid=&sr=" target="_blank" rel="external">7 x 10 format</a></li>
<li>Elements of Programming Interviews in Java: <a href="https://www.amazon.com/Elements-Programming-Interviews-Java-Insiders/dp/1517435803?ie=UTF8&ref_=asap_bc" target="_blank" rel="external">6 x 9 format</a>, <a href="https://www.amazon.com/Elements-Programming-Interviews-Java-Adnan/dp/1517671272/ref=sr_1_2?s=books&ie=UTF8&qid=1466659893&sr=1-2&keywords=elements+of+programming+interview+in+java" target="_blank" rel="external">7 x 10 format</a></li>
</ul>
<p></p><h4>Versions</h4> People are often confused the publication dates, e.g., October 2012 date listed for the original 6 in x 9 in EPI (C++).<p></p>
<p>EPI has changed enormously since the initial release - the first release came at commit 1200, we are now at commit 3900. On the way we’ve added and removed problems, features, and content, based on trends we’ve seen at interviews. We regularly upload updated PDF to Amazon’s on-demand publishing arm, and it goes live immediately.</p>
<p>For this reason <b>we very strongly recommend that you buy only from Amazon itself</b>, not from resellers on Amazon. Regardless of the advertised release date, the version sold by Amazon itself is <b>always current</b> - resellers may be selling old stock, or even worse, pirated copies which have very poor print quality.</p>
</div>
<a type="button" href="/2016/06/22/2016-06-22-variants/#more" class="btn btn-default more">Read More</a>
</div>
<!-- display as entry -->
<h3 class="title">
<div class="date"> 2016-05-19 </div>
<div class="article-title"><a href="/2016/05/19/2016-05-19-epi-cover-2/" >Dear readers - we need your help to select a new cover!</a></div>
</h3>
<div class="entry">
<div class="row">
<p>To celebrate all the changes we have made to EPI since its first release, we are creating a new cover.</p>
<p>We held a design competition, and we would like you to help us pick from the finalists. Click <a href="https://99designs.com/book-cover-design/contests/best-selling-book-computer-science-needs-cover-615393/poll/8twqx7?utm_source=voting_app&utm_medium=web&utm_campaign=voting" target="_blank" rel="external">here</a> to vote on covers. (Direct link to poll: <a href="http://bit.ly/epicover2" target="_blank" rel="external">http://bit.ly/epicover2</a>)</p>
<p>Here is a screenshot of the poll.</p>
<p><img src="/img/epi-cover-poll.png" width="750px"></p>
</div>
<a type="button" href="/2016/05/19/2016-05-19-epi-cover-2/#more" class="btn btn-default more">Read More</a>
</div>
<!-- display as entry -->
<h3 class="title">
<div class="date"> 2016-02-25 </div>
<div class="article-title"><a href="/2016/02/25/2016-02-25-reviewers-for-2.0/" >Please help us review some exciting new features!</a></div>
</h3>
<div class="entry">
<div class="row">
<h3>New features</h3>
<p>EPI is a community book - its content, quality, and very existence, are a testament to the engagement and enthusiasm of its readers.</p>
<p>In this spirit, we are asking readers to help us by providing <strong>feedback on some new material</strong> we’ve been working on. Specifically, based on your feedback, we are adding the following features to EPI:</p>
<ul>
<li><strong>Expanded introductions for each chapter</strong>. These introductions include<ul>
<li>An example that illustrates the key data structures and algorithms for that chapter, e.g., how to use binary search with a custom comparator.</li>
<li>A table of top-tips for the chapter, e.g., consider reversing arrays of digits to operate on the least-significant digit first.</li>
<li>A review of the most important library methods, e.g., Arrays.asList(1,3,5).</li>
</ul>
</li>
<li><strong>More domain specific questions</strong>. Specifically, in addition to the existing chapter on system design problems, we are adding the following chapters.<ul>
<li>Programming language questions, e.g., the difference between final and finally.<br>a Object-oriented principles, e.g., explain the difference between a class adapter and an object adapter.</li>
<li>Tool questions, e.g., describe the role of merging in a version control system.</li>
</ul>
</li>
</ul>
<p>By acting as a reviewer, you will get </p>
<ul>
<li>a chance to perfect your interviewing skills,</li>
<li>an early look at the book, </li>
<li>our undying gratitude, and, </li>
<li>a free hardcopy of the book, <em>if</em> you are one of the first 25 reviewers or make great contributions to this review.</li>
</ul>
<p>If you are interested, please <em>sign up</em> via this <a href="http://goo.gl/forms/J1cSiSx3JD" target="_blank" rel="external">Google form</a>.</p>
<p>We expect reviewers to spend one to two afternoons going through the assigned material, and identify an issue every 1 to 2 pages. </p>
<p>The perfect is the enemy of the good - please send us your inputs as soon as you can. (We are hoping to have a substantial amount of feedback by <em>mid April</em>.</p>
<p>Issues can be typos, language that is misleading, suboptimum solutions, bad programming practices - in short anything that can improve the quality of the book. Every individual issue you identify should be reported through a Google form, which you can view <a href="http://goo.gl/forms/abWVyxxWgV" target="_blank" rel="external">here</a>.</p>
<p>Here are some examples of issues reported by readers. Note how specific these suggestions are - they have details on where the issue was, what the problem was, what the right wording should be, etc.</p>
<ul>
<li>Suggestion: Solution 12.14: I feel that the limitations of the template method particularly in C++ should be addressed.</li>
<li>Typo: The account of HTTPS consistently spells certificate as sertificate.</li>
<li>Suggestion: Drop Variant 10.16.1, as it is effectively the same as Problem 10.18.</li>
<li>Clarification: I don’t see how it’s possible to sort in O(n) time, as suggested by the writeup at the start of Chapter 13.</li>
</ul>
</div>
<a type="button" href="/2016/02/25/2016-02-25-reviewers-for-2.0/#more" class="btn btn-default more">Read More</a>
</div>
<!-- display as entry -->
<h3 class="title">
<div class="date"> 2015-12-04 </div>
<div class="article-title"><a href="/2015/12/04/2015-12-04-epi-judge/" >Introducing the EPI online judge</a></div>
</h3>
<div class="entry">
<div class="row">
<p><b>July 7, 2016</b></p><p> </p>
<p><b>We’re closing the judge service for the near future as we take the lessons learned and build out a more robust and full-featured service.</b></p>
<p><b>Jan 14, 2016</b></p><p> </p>
<p>We’ve put together a prototype <a href="http://judge.elementsofprogramminginterviews.com:8080" target="_blank" rel="external">online judge</a> service that you can use to practice for interviews. </p>
<p>Take a look at the screenshot at the end to see the UI, or just click on the link.<br>No login is needed, just read the problem description and start hacking!</p>
<p>The judge problems correspond to the problems in the <a href="/sample">PDF sample</a>. These problems are an ideal starting point for anyone who wants to get up to speed with interviewing. (Right now, all programs are in Java.)</p>
<h3 id="Usage"><a href="#Usage" class="headerlink" title="Usage"></a>Usage</h3><p>We use <strong>directed tests</strong> for the judge problems, and try to give <strong>meaningful feedback</strong>. For example, if your program for testing if a binary tree is balanced fails, you will see a report like the following.</p>
<figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">Incorrect result on balanced tree {0,1,2,3,#,4,5}</div></pre></td></tr></table></figure>
<p>
</p><p>If your program fails to compile, we return the <strong>compiler error</strong>, and the <strong>line numbers will correspond</strong> to the lines in your program.</p>
<figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div><div class="line">4</div><div class="line">5</div><div class="line">6</div></pre></td><td class="code"><pre><div class="line">Line 7: error: incompatible types</div><div class="line"> int y = "asd";</div><div class="line"> ^</div><div class="line"> required: int</div><div class="line"> found: String</div><div class="line">1 error</div></pre></td></tr></table></figure>
<p>
</p><p>If your program throws an exception, we return the <strong>stacktrace</strong> - the <strong>line numbers will not correspond</strong> to the lines in your program.</p>
<figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">Exception in thread "main" java.lang.RuntimeException</div><div class="line"> at BalancedBinaryTree.isBalanced(file.java:49)</div><div class="line"> at BalancedBinaryTree.main(file.java:86)</div></pre></td></tr></table></figure>
<p>
</p><p>Your program runs in Docker container, so <strong>don’t worry about crashing or damaging</strong> our server. We run the program with a <strong>timeout of 20 seconds</strong>, so if your program has an infinite loop, or is very slow, you’ll get a timeout response. If the server is under load, it may block requests that are too frequent.</p>
<p>
</p><p>A few programs require you to have an <strong>efficient solution to pass</strong>, e.g., if you brute-force compute the parity, you will see the judge informs you that your solution is too slow:</p>
<figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">Execution Timed Out</div></pre></td></tr></table></figure>
<p>
</p><h3 id="Plans"><a href="#Plans" class="headerlink" title="Plans"></a>Plans</h3><p>We’re very excited about offering this service, and look forward to developing it - adding more problems, adding a login and persisting your code, classification of problens, drag-and-drop into the editor, executing from Github, etc.</p>
<h3 id="Reader-Input"><a href="#Reader-Input" class="headerlink" title="Reader Input"></a>Reader Input</h3><p>As always, we treasure user input. Please <a href="contact">share</a> your thoughts with us about the judge. Some things we’re especially keen on learning about are:</p>
<ol><br><li> Bugs, e.g., program never returns, hint button doesn’t work, etc.<br></li><li> Source of confusion, e.g., misleading stack traces, wording of error<br></li><li> General UI issues: is editor font ok? do you prefer a light background?<br></li><li> How important are features like login, timing, etc.?<br></li></ol>
<p><img src="/img/epi-judge-ui.png" width="800px"></p>
</div>
<a type="button" href="/2015/12/04/2015-12-04-epi-judge/#more" class="btn btn-default more">Read More</a>
</div>
<!-- display as entry -->
<h3 class="title">
<div class="date"> 2015-09-23 </div>
<div class="article-title"><a href="/2015/09/23/2015-09-23-epi-java/" >Elements of Programming Interviews in Java</a></div>
</h3>
<div class="entry">
<div class="row">
<p><b>The Java version of EPI is <strike>in press</strike> ready!</b></p>
<p><img src="/img/epi-java-thumbnail.png"></p>
<strike>It should be available from Amazon in a few days.<br>We will post a direct link to the Amazon page when it is ready.</strike>
<p><b>It’s here!</b></p><p></p>
<p><a href="http://www.amazon.com/Elements-Programming-Interviews-Java-Insiders/dp/1517435803/" target="_blank" rel="external">Link</a> to Amazon page<br>for EPI in Java.</p>
<p></p><p><br><img src="/img/epi-java-amzn.png" width="600"></p>
<p>
</p><p>The only difference between the original EPI and EPI in Java is that<br>the programs are now in Java instead of C++. (We also have a short chapter<br>on Java, which includes best coding practices for an interview and a small<br>number of language review questions; this replaces the similar chapter on C++<br>in the original EPI.)</p>
<p>All programs, Java and C++, are always available from the website.</p>
<p>We will continue to sell the original EPI for readers who prefer C++.</p>
</div>
<a type="button" href="/2015/09/23/2015-09-23-epi-java/#more" class="btn btn-default more">Read More</a>
</div>
<!-- display as entry -->
<h3 class="title">
<div class="date"> 2015-09-09 </div>
<div class="article-title"><a href="/2015/09/09/2015-09-09-amzn-status/" >EPI back at Amazon</a></div>
</h3>
<div class="entry">
<div class="row">
<strike><h3>EPI is not currently available from Amazon, we are working on this issue</h3></strike>
<font color="red"><b>As of 12:43 CDT 9/15/2015, EPI is available again!</b></font>
<!-- For unknown reasons, EPI was not available from Amazon directly for over a week.
We made numerous calls to Amazon and Createspace (the publisher), but were never able to get a clear idea of what happened. -->
</div>
<a type="button" href="/2015/09/09/2015-09-09-amzn-status/#more" class="btn btn-default more">Read More</a>
</div>
</div>
<!-- pagination -->
<div>
<center>
<div class="pagination">
<ul class="pagination">
<li class="prev disabled"><a><i class="fa fa-arrow-circle-o-left"></i>Prev</a></li>
<li><a href="/"><i class="fa fa-home"></i>Home</a></li>
<li class="next"> <a href="/page/2/" class="alignright next">Next<i class="fa fa-arrow-circle-o-right"></i></a> </li>
</ul>
</div>
</center>
</div>
</div> <!-- col-md-9 -->
<div class="col-md-3">
<div id="sidebar">
<div id="site_search">
<div class="form-group">
<input type="text" id="local-search-input" name="q" results="0" placeholder="Search" class="st-search-input st-default-search-input form-control"/>
</div>
<div id="local-search-result"></div>
</div>
<div class="widget">
<h4>Links</h4>
<ul class="blogroll list-unstyled">
<li><i class="fa fa-spinner fa-spin fa-lg fa-fw"></i><a href="2017/11/27/2017-11-27-buying-epi" title="Buying EPI from Amazon" target="_blank"]);">READ THIS FIRST!!!</a></li>
<li><i class="fa fa-code"></i><a href="http://epijudge.com" title="Solution code" target="_blank"]);">Solution code</a></li>
<li><i class="fa fa-book"></i><a href="http://bit.ly/epibook" title="Hardcopy C++ at Amazon" target="_blank"]);">C++ version at Amazon</a></li>
<li><i class="fa fa-book"></i><a href="http://bit.ly/epijava" title="Hardcopy Java at Amazon" target="_blank"]);">Java version at Amazon</a></li>
<li><i class="fa fa-book"></i><a href="http://bit.ly/epipython" title="Hardcopy Python at Amazon" target="_blank"]);">Python version at Amazon</a></li>
<li><i class="fa fa-google"></i><a href="https://play.google.com/store/books/details/Adnan_Aziz_Elements_of_Programming_Interviews?id=y6FLBQAAQBAJ" title="Ebook at Google Play" target="_blank"]);">Ebook</a></li>
<li><i class="fa fa-dashboard"></i><a href="http://talk.elementsofprogramminginterviews.com/" title="Discussion Forum" target="_blank"]);">Discussion Forum</a></li>
<li><i class="fa fa-sign-in"></i><a href="2015/01/01/2015-01-01-register/" title="Register" target="_blank"]);">Register</a></li>
</ul>
</div>
<div class="widget">
<h4>Recent Posts</h4>
<ul class="entry list-unstyled">
<li>
<!-- <a href="/2018/01/30/2018-01-30-judge-beta/" ><i class="fa fa-file-o"></i>EPI Judge Beta</a> -->
<a href="/2018/01/30/2018-01-30-judge-beta/" >EPI Judge Beta</a>
</li>
<li>
<!-- <a href="/2017/11/27/2017-11-27-buying-epi/" ><i class="fa fa-file-o"></i>Buying EPI</a> -->
<a href="/2017/11/27/2017-11-27-buying-epi/" >Buying EPI</a>
</li>
<li>
<!-- <a href="/2017/05/26/2017-05-25-the-onsite/" ><i class="fa fa-file-o"></i>The Onsite</a> -->
<a href="/2017/05/26/2017-05-25-the-onsite/" >The Onsite</a>
</li>
<li>
<!-- <a href="/2017/04/03/2017-04-03-python/" ><i class="fa fa-file-o"></i>EPI in Python</a> -->
<a href="/2017/04/03/2017-04-03-python/" >EPI in Python</a>
</li>
<li>
<!-- <a href="/2016/06/22/2016-06-22-variants/" ><i class="fa fa-file-o"></i>EPI variants and versions</a> -->
<a href="/2016/06/22/2016-06-22-variants/" >EPI variants and versions</a>
</li>
</ul>
</div>
<div class="widget">
<h4>Categories</h4>
<ul class="tag_box inline list-unstyled">
<li><a href="/categories/Book-Ideas/">Book Ideas<span>1</span></a></li>
<li><a href="/categories/Ebook/">Ebook<span>1</span></a></li>
<li><a href="/categories/General-Programming/">General Programming<span>2</span></a></li>
<li><a href="/categories/OS/General-Programming/">General Programming<span>1</span></a></li>
<li><a href="/categories/Introduction/">Introduction<span>1</span></a></li>
<li><a href="/categories/Warming-Up/Introduction/">Introduction<span>1</span></a></li>
<li><a href="/categories/OS/">OS<span>1</span></a></li>
<li><a href="/categories/Online-Judge/">Online Judge<span>1</span></a></li>
<li><a href="/categories/Overview/">Overview<span>1</span></a></li>
<li><a href="/categories/Programming-Language/">Programming Language<span>1</span></a></li>
<li><a href="/categories/Programming-Practice/">Programming Practice<span>1</span></a></li>
<li><a href="/categories/General-Programming/Tools/">Tools<span>1</span></a></li>
<li><a href="/categories/Warming-Up/">Warming Up<span>1</span></a></li>
</ul>
</div>
<div class="widget">
<h4>Tag Cloud</h4>
<ul class="tag_box inline list-unstyled">
<li><a href="/tags/Regular-expressions/">Regular expressions<span>1</span></a></li>
<li><a href="/tags/Register/">Register<span>1</span></a></li>
<li><a href="/tags/Google-Play/">Google Play<span>1</span></a></li>
<li><a href="/tags/Debugging/">Debugging<span>1</span></a></li>
<li><a href="/tags/VCS/">VCS<span>1</span></a></li>
<li><a href="/tags/Unix/">Unix<span>1</span></a></li>
<li><a href="/tags/General-Programming/">General Programming<span>1</span></a></li>
<li><a href="/tags/Python/">Python<span>2</span></a></li>
<li><a href="/tags/Ebook/">Ebook<span>1</span></a></li>
<li><a href="/tags/OS/">OS<span>1</span></a></li>
<li><a href="/tags/TCP-IP/">TCP/IP<span>1</span></a></li>
<li><a href="/tags/C/">C++<span>1</span></a></li>
<li><a href="/tags/System-Call/">System Call<span>1</span></a></li>
<li><a href="/tags/Build/">Build<span>1</span></a></li>
<li><a href="/tags/PDF/">PDF<span>1</span></a></li>
<li><a href="/tags/iBooks/">iBooks<span>1</span></a></li>
<li><a href="/tags/Java/">Java<span>1</span></a></li>
<li><a href="/tags/DNS/">DNS<span>1</span></a></li>
<li><a href="/tags/Exercises/">Exercises<span>1</span></a></li>
<li><a href="/tags/Why-we-wrote-EPI/">Why we wrote EPI<span>1</span></a></li>
<li><a href="/tags">...<span>26</span></a></li>
</ul>
</div>
</div> <!-- sidebar -->
</div> <!-- col-md-3 -->
</div> <!-- row-fluid -->
</div>
</div>
<div class="container-narrow">
<footer> <p>
© 2018 The EPI Team
with help from <a href="http://hexo.io/" target="_blank">Hexo</a> and <a href="http://getbootstrap.com/" target="_blank">Twitter Bootstrap</a>. Theme by <a href="http://github.com/wzpan/hexo-theme-freemind/">Freemind</a>.
</p> </footer>
</div> <!-- container-narrow -->
<a id="gotop" href="#">
<span>▲</span>
</a>
<script src="/js/jquery.imagesloaded.min.js"></script>
<script src="/js/gallery.js"></script>
<script src="/js/bootstrap.min.js"></script>
<script src="/js/main.js"></script>
<script src="/js/search.js"></script>
<link rel="stylesheet" href="/fancybox/jquery.fancybox.css" media="screen" type="text/css">
<script src="/fancybox/jquery.fancybox.pack.js"></script>
<script type="text/javascript">
(function($){
$('.fancybox').fancybox();
})(jQuery);
</script>
<script type="text/javascript">
var search_path = "search.xml";
if (search_path.length == 0) {
search_path = "search.xml";
}
var path = "/" + search_path;
searchFunc(path, 'local-search-input', 'local-search-result');
</script>
</body>
</html>