Don't reply on markdown editor. Start the application locally to make and verify your changes.
cd Scribbles
npm i
npm run start
# By default, a browser window will open at http://localhost:3000/.
See the Checklist.
Tutorials markdown files are stored under ./tutorials
.
---
title: '<TITLE>'
description: '<DESCRIPTION_OF_THE_TOPIC>'
hide_table_of_contents: true
---
<TutorialAuthors names="@<YOUR_ALIAS>"/>
## Overview
// TODO: Overview of the topic
// DO NOT COPY FROM OTHER EXTERNAL SITES
// DO NOT USE RANDOM EXAMPLES OR EXAMPLES FROM OTHER SITES
// TODO: Complexity Analysis
### Example : [<PROBLEM_ID> - <PROBLEM_TITLE>]
> <PROBLEM STATEMENT>
// TODO: Your explanation
// TODO: Your solution to the problem
// TODO: add Suggested Problems (See the examples below to learn how to render)
Examples:
- Solution markdown files are stored under
./dsa/category/grokkingcodinginterview
. // The Meta and Problem Statement can be generated by using a Chrome extension underconverter
locally. // If you do not know how to do it, leave it blank and @wingkwong will help add them.
// TODO: Detailed Explanations / Line by Line Explanations in code // TODO: Complexity Analysis
// Your code goes here
# Your code goes here
// Your code goes here
// TODO: Detailed Explanations / Line by Line Explanations in code // TODO: Complexity Analysis
// Your code goes here
# Your code goes here
// Your code goes here
Examples:
-
For images, please copy and paste to Github editor (the image will be uploaded to github content) to get the image link (e.g. https://user-images.githubusercontent.com/35857179/168304432-fa9ac8bb-0eb9-49d9-bdcf-5e3509c1f835.png). Do not upload any images to this repository.
-
If your content includes variables or math equations, please highlight it with LaTex syntax. See binary-exponentiation.md as an example.
-
If you have used other resources from external sites, give references at the end.