website: embed partner placements within docs

This commit is contained in:
Yangshun
2022-03-18 08:41:37 +08:00
parent f159684c00
commit c160df7abe
15 changed files with 80 additions and 6 deletions

View File

@ -6,6 +6,8 @@ sidebar_label: Introduction
slug: introduction
---
import InDocAd from '../\_components/InDocAd';
This section dives deep into practical tips for specific topics of algorithms and data structures which appear frequently in coding questions. Many algorithm questions involve techniques that can be applied to questions of similar nature. The more techniques you have in your arsenal, the higher the chances of passing the interview. They may lead you to discover corner cases you might have missed out or even lead you towards the optimal approach!
For each topic, study links are recommended to help you master the topic. There is a list of recommended common questions to practice which in my opinion is highly valuable for mastering the core concepts for the topic.
@ -47,6 +49,8 @@ Hashmaps are probably the most commonly used data structure for algorithm questi
If you are cutting corners in your code, state that out loud to your interviewer and say what you would do in a non-interview setting (no time constraints). E.g., I would write a regex to parse this string rather than using `split()` which may not cover all cases.
<InDocAd/>
## Recommended courses
import AlgorithmCourses from '../\_courses/AlgorithmCourses.md'