parent
13a8ed4222
commit
0535dd0d7f
@ -1,5 +1,5 @@
|
||||
# Algorithms
|
||||
|
||||
The contents have been moved to the [website](https://techinterviewhandbook.org/algorithms/algorithms-introduction).
|
||||
The contents have been moved to the [website](https://techinterviewhandbook.org/algorithms/introduction).
|
||||
|
||||
<!-- TODO: Remove in future -->
|
||||
|
@ -1,71 +1,86 @@
|
||||
module.exports = {
|
||||
docs: {
|
||||
Preface: ['introduction', 'landscape'],
|
||||
'Job Application': [
|
||||
'resume',
|
||||
'resume-case-study',
|
||||
'resume-sample',
|
||||
'cover-letter',
|
||||
],
|
||||
'Interview Process': [
|
||||
'interview-formats',
|
||||
'self-introduction',
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Coding Round',
|
||||
items: [
|
||||
'coding-round-overview',
|
||||
'picking-a-language',
|
||||
'study-and-practice',
|
||||
'best-practice-questions',
|
||||
'during-coding-interview',
|
||||
'cheatsheet',
|
||||
'coding-signals',
|
||||
'mock-interviews',
|
||||
'interviewer-cheatsheet',
|
||||
],
|
||||
},
|
||||
'system-design',
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Behavioral Round',
|
||||
items: [
|
||||
'behavioral-round-overview',
|
||||
'star-format',
|
||||
'behavioral-questions',
|
||||
'psychological-tricks',
|
||||
],
|
||||
},
|
||||
'questions-to-ask',
|
||||
],
|
||||
'Post Interview': [
|
||||
'understanding-compensation',
|
||||
'negotiation',
|
||||
'engineering-levels',
|
||||
'team-selection',
|
||||
],
|
||||
Algorithms: [
|
||||
'algorithms/algorithms-introduction',
|
||||
'algorithms/array',
|
||||
'algorithms/binary',
|
||||
'algorithms/dynamic-programming',
|
||||
'algorithms/geometry',
|
||||
'algorithms/graph',
|
||||
'algorithms/hash-table',
|
||||
'algorithms/heap',
|
||||
'algorithms/interval',
|
||||
'algorithms/linked-list',
|
||||
'algorithms/math',
|
||||
'algorithms/matrix',
|
||||
'algorithms/oop',
|
||||
'algorithms/permutation',
|
||||
'algorithms/queue',
|
||||
'algorithms/recursion',
|
||||
'algorithms/sorting-searching',
|
||||
'algorithms/stack',
|
||||
'algorithms/string',
|
||||
'algorithms/tree',
|
||||
'algorithms/trie',
|
||||
],
|
||||
},
|
||||
docs: [
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Preface',
|
||||
items: ['introduction', 'landscape'],
|
||||
},
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Job Application',
|
||||
items: ['resume', 'resume-case-study', 'resume-sample', 'cover-letter'],
|
||||
},
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Interview Process',
|
||||
items: [
|
||||
'interview-formats',
|
||||
'self-introduction',
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Coding Round',
|
||||
items: [
|
||||
'coding-round-overview',
|
||||
'picking-a-language',
|
||||
'study-and-practice',
|
||||
'best-practice-questions',
|
||||
'during-coding-interview',
|
||||
'cheatsheet',
|
||||
'coding-signals',
|
||||
'mock-interviews',
|
||||
'interviewer-cheatsheet',
|
||||
],
|
||||
},
|
||||
'system-design',
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Behavioral Round',
|
||||
items: [
|
||||
'behavioral-round-overview',
|
||||
'star-format',
|
||||
'behavioral-questions',
|
||||
'psychological-tricks',
|
||||
],
|
||||
},
|
||||
'questions-to-ask',
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Post Interview',
|
||||
items: [
|
||||
'understanding-compensation',
|
||||
'negotiation',
|
||||
'engineering-levels',
|
||||
'team-selection',
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Algorithms',
|
||||
items: [
|
||||
'algorithms/algorithms-introduction',
|
||||
'algorithms/array',
|
||||
'algorithms/binary',
|
||||
'algorithms/dynamic-programming',
|
||||
'algorithms/geometry',
|
||||
'algorithms/graph',
|
||||
'algorithms/hash-table',
|
||||
'algorithms/heap',
|
||||
'algorithms/interval',
|
||||
'algorithms/linked-list',
|
||||
'algorithms/math',
|
||||
'algorithms/matrix',
|
||||
'algorithms/oop',
|
||||
'algorithms/permutation',
|
||||
'algorithms/queue',
|
||||
'algorithms/recursion',
|
||||
'algorithms/sorting-searching',
|
||||
'algorithms/stack',
|
||||
'algorithms/string',
|
||||
'algorithms/tree',
|
||||
'algorithms/trie',
|
||||
],
|
||||
},
|
||||
],
|
||||
};
|
||||
|
Loading…
Reference in new issue