Skip to content

Commit 2004a10

Browse files
committed
contents: add best coding interview courses page
1 parent 42c21f9 commit 2004a10

File tree

4 files changed

+43
-10
lines changed

4 files changed

+43
-10
lines changed

contents/_courses/AlgorithmCourses.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
- [Grokking the Coding Interview: Patterns for Coding Questions](https://www.educative.io/courses/grokking-the-coding-interview?aff=x23W) - This course essentially expands upon the questions on this page but approaches the practicing from a questions pattern perspective rather than data structures, which is an approach I also agree with for learning and have personally used to get better at algorithmic problems. **Learn and understand patterns, not memorize answers!**
2-
- [Master the Coding Interview: Data Structures + Algorithms](https://fxo.co/DQoD) - This Udemy bestseller is one of the highest-rated interview preparation course (4.6 stars, 21.5k ratings, 135k students) and packs **19 hours** worth of contents into it. Like Tech Interview Handbook, it goes beyond coding interviews and covers resume, non-technical interviews, negotiations. It's an all-in-one package!
1+
- [Grokking the Coding Interview: Patterns for Coding Questions](https://www.educative.io/courses/grokking-the-coding-interview?aff=x23W) - This course essentially expands upon the questions on this page but approaches the practicing from a questions pattern perspective rather than data structures, which is an approach I also agree with for learning and have personally used to get better at algorithmic problems. The course allows you to practice in Java, Python, C++, JavaScript and also provides sample solutions in those languages. **Learn and understand patterns, not memorize answers!**
2+
- [Master the Coding Interview: Data Structures + Algorithms](https://fxo.co/DQpY) - This Udemy bestseller is one of the highest-rated interview preparation course (4.6 stars, 21.5k ratings, 135k students) and packs **19 hours** worth of contents into it. Like Tech Interview Handbook, it goes beyond coding interviews and covers resume, non-technical interviews, negotiations. It's an all-in-one package! Note that JavaScript is being used for the coding demos.
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
id: best-coding-interview-courses
3+
title: Best coding interview courses
4+
description: Best courses to take to prepare for your coding interviews
5+
sidebar_label: 🔥 Best interview courses
6+
keywords: [algorithm, coding, interview, questions]
7+
---
8+
9+
If you prefer courses where the learning is more structured, here are a few recommendations.
10+
11+
## General
12+
13+
import AlgorithmCourses from './\_courses/AlgorithmCourses.md'
14+
15+
<AlgorithmCourses />
16+
17+
## Python
18+
19+
| Course | Reviews | Duration | Price | Contents |
20+
| :-- | --- | --- | --- | --- |
21+
| [The Complete Data Structures and Algorithms Course in Python](https://fxo.co/DQpc) | 4.5/5 | 41h | $ | Basic data structures and algorithms |
22+
| [Python for Data Structures, Algorithms, and Interviews!](https://fxo.co/DQpb) | 4.5/5 | 16.5h | $$ | Basic data structures and algorithms, job application, behavioral interview, negotiation |
23+
24+
## Java
25+
26+
| Course | Reviews | Duration | Price | Contents |
27+
| :-- | --- | --- | --- | --- |
28+
| [Java Data Structures and Algorithms Masterclass](https://fxo.co/DQpa) | 4.5/5 | 45h | $ | Basic and advanced Basic data structures and algorithms |
29+
| [Data Structures and Algorithms: Deep Dive Using Java](https://fxo.co/DQpW) | 4.5/5 | 16h | $$ | Basic data structures and algorithms |
30+
31+
## JavaScript
32+
33+
| Course | Reviews | Duration | Price | Contents |
34+
| :-- | --- | --- | --- | --- |
35+
| [Master the Coding Interview: Data Structures + Algorithms](https://fxo.co/DQpY) | 4.6/5 | 19.5h | $$ | Basic data structures and algorithms, job application, behavioral interview, negotiation |
36+
| [JavaScript Data Structures and Algorithms Masterclass](https://fxo.co/DQpZ) | 4.5/5 | 45h | $ | Basic and advanced data structures and algorithms |

contents/study-and-practice.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: study-and-practice
3-
title: Practical tips
4-
description: Mastery of Computer Science fundamentals, identifying question patterns, practicing good coding style is the key to improving in coding interviews
3+
title: Study and practice
4+
description: Mastery of Computer Science fundamentals, identifying question patterns, practicing good coding style is the key to improving in coding interviews.
55
keywords:
66
[
77
algorithm,

website/sidebars.js

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,9 @@ module.exports = {
2929
'🔥 Coding interviews': [
3030
'coding-interview',
3131
'picking-a-language',
32-
{
33-
'Study and practice': [
34-
'study-and-practice',
35-
'best-practice-questions',
36-
],
37-
},
32+
'study-and-practice',
33+
'best-coding-interview-courses',
34+
'best-practice-questions',
3835
'during-coding-interview',
3936
'cheatsheet',
4037
'coding-signals',

0 commit comments

Comments
 (0)