Update README.md

pull/780/head
Aditya Yaduvanshi 2022-08-07 01:51:14 +05:30 committed by GitHub
parent 9724d09396
commit 1a5d3d6604
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 4 deletions

View File

@ -61,9 +61,16 @@ problem-name\
#### `README.md` Specification / Template #### `README.md` Specification / Template
````markdown ````markdown
# <Title of the Problem> # Delete the kth node from the end
< description of the problem > Lets K be the total nodes in the linked list.
Observation : The Nth node from the end is (K-N+1)th node from the beginning.
So the problem simplifies down to that we have to find (K-N+1)th node from the beginning.
One way of doing it is to find the length (K) of the linked list in one pass and then in the second pass move (K-N+1) step from the beginning to reach the Nth node from the end.
To do it in one pass. Lets take the first pointer and move N step from the beginning. Now the first pointer is (K-N+1) steps away from the last node, which is the same number of steps the second pointer require to move from the beginning to reach the Nth node from the end.
## Prerequisites ## Prerequisites
@ -75,12 +82,16 @@ problem-name\
- instructions to run the project - instructions to run the project
- < Simple and reproducible commands to execute the project > - < Simple and reproducible commands to execute the project >
```bash ```bash
make # or 'cargo run', or 'dotnet run' or 'mvn exec:java' etc. javac circular.java
java circular
``` ```
## Test Cases & Output < if exists> ## Test Cases & Output < if exists>
< If you can provide test cases, describe it here, else remove this section > Test Case 1:
Input- 3
1 2 3 4 5 6
Output- 1>2>3>5>6
```` ````
#### `.gitignore` File #### `.gitignore` File
@ -130,6 +141,7 @@ The programming should keep the naming convention rule of each programming langu
<a href="https://github.com/MakeContributions/DSA/graphs/contributors"> <a href="https://github.com/MakeContributions/DSA/graphs/contributors">
<img src="https://contrib.rocks/image?repo=MakeContributions/DSA" /> <img src="https://contrib.rocks/image?repo=MakeContributions/DSA" />
</a> </a>
## Open Graph ## Open Graph