From 21bd88215c192c4f31d108bf33fc4d1b224edadc Mon Sep 17 00:00:00 2001 From: David Leal Date: Mon, 14 Nov 2022 15:56:23 -0600 Subject: [PATCH] chore: remove redundant `\` --- leetcode/README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/leetcode/README.md b/leetcode/README.md index 4d258034..47c2b583 100644 --- a/leetcode/README.md +++ b/leetcode/README.md @@ -23,7 +23,7 @@ git checkout -b solution/your-solution-name All LeetCode problems can be found [**here**](https://leetcode.com/problemset/all/).\ If you have a solution to any of these problems (which are not being [**repeated**](https://github.com/TheAlgorithms/C/blob/master/leetcode/DIRECTORY.md)), that's great! Here are the steps: -1. Add a new file in `leetcode/src` with the number of the problem.\ +1. Add a new file in `leetcode/src` with the number of the problem. - For example: if the problem's number is 98, the filename should be `98.c`. 2. Provide a small description of the solution at the top of the file. A function should go below that. For example: @@ -47,9 +47,7 @@ Please use numerical order. For example: if the solution's number is `98`, add y This is the required format for new solutinos: ```markdown -... | | []() | [C](./src/.c) | | -... ``` ## 📦 Committing your changes 📦