Deep-ML
Problems
FAQ
Submit Problem
Shop
0
Submit a New Question
Fill out the form below to submit a new question to our database.
Name
GitHub Link
Title
Category:
Select category
Linear Algebra
Machine Learning
Deep Learning
NLP
Difficulty:
Select difficulty
Easy
Medium
Hard
Description
Edit
Preview
### Welcome to the MDX Editor! You can edit your MDX content here. Here's a quick guide: 1. **Markdown Syntax**: Use standard Markdown for headings, lists, links, and more. - Example: `## Heading 2`, `- List item`. 2. **LaTeX Support**: Add mathematical expressions using `$ {expression} $`. - Example: `$ E = mc^2 $` will render Einstein's famous formula. - $ E = mc^2 $ 3. **GitHub Flavored Markdown (GFM)**: Enjoy GitHub-style Markdown features like tables and task lists. - Example: - [ ] Task 1 - [x] Task 2. 4. **Emoji Support**: Use `:emoji_code:` for emojis. - Example: `:smile:` → :smile: 5. **Highlighted Code Blocks**: Add syntax-highlighted code blocks with triple backticks. - Example: ```javascript console.log("Hello, MDX!"); ``` Feel free to explore these features and create amazing content!
Example
Starter Code
Loading...
Test Cases
Remove test case
Add Test Case
Solution
Loading...
Learn Section
Edit
Preview
### Writing Mathematical Expressions with LaTeX This editor supports LaTeX for rendering mathematical equations and expressions. Here's how you can use it: 1. **Inline Math**: - Wrap your expression with single `$` symbols. - Example: `$E = mc^2$` → Renders as: ( $E = mc^2$ ) 2. **Block Math**: - Wrap your expression with double `$$` symbols. - Example: ``` $$ \int_a^b f(x) \, dx $$ ``` Renders as: $$ \int_a^b f(x) \, dx $$ 3. **Math Functions**: - Use standard LaTeX functions like `\frac`, `\sqrt`, `\sum`, etc. - Examples: - `$\frac{a}{b}$` → ( $\frac{a}{b}$ ) - `$\sqrt{x}$` → ( $\sqrt{x}$ ) 4. **Greek Letters and Symbols**: - Use commands like `\alpha`, `\beta`, etc., for Greek letters. - Example: `$\alpha + \beta = \gamma$` → ( $\alpha + \beta = \gamma$ ) 5. **Subscripts and Superscripts**: - Use `_{}` for subscripts and `^{}` for superscripts. - Examples: - `$x_i$` → ( $x_i$ ) - `$x^2$` → ( $x^2$ ) 6. **Combined Examples**: - `$\sum_{i=1}^n i^2 = \frac{n(n+1)(2n+1)}{6}$` Renders as: $\sum_{i=1}^n i^2 = \frac{n(n+1)(2n+1)}{6}$ Feel free to write your own mathematical expressions, and they will be rendered beautifully in the preview!
Video Solution Link
Submit Question