-
Notifications
You must be signed in to change notification settings - Fork 273
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added algorithms by languages section #958
added algorithms by languages section #958
Conversation
Thank you for submitting your pull request! 🙌 We'll review it as soon as possible. In the meantime, please ensure that your changes align with our CONTRIBUTING.md. If there are any specific instructions or feedback regarding your PR, we'll provide them here. Thanks again for your contribution! 😊 |
@@ -218,6 +219,55 @@ To the Point, Short and Practical - These 3 terms defines our Content | |||
</tr> | |||
</table> | |||
|
|||
### Algorithms by Languages | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a description here |
<table width="100%" id="algorithms-by-languages"> | ||
<tr> | ||
<th>JavaScript</th> | ||
|
||
</tr> | ||
<tr> | ||
<td><a href="https://www.youtube.com/watch?v=P6XGSKO2RzI&t=519s">Quick Sort</a></td> | ||
|
||
</tr> | ||
<tr> | ||
<td><a href="https://www.youtube.com/watch?v=x_Z9FcAPmbk&t=1s">Merge Sort</a></td> | ||
</tr> | ||
<tr> | ||
<td><a href="https://www.youtube.com/watch?v=75jGy1xAhhs&t=2s">Binary Search</a></td> | ||
</tr> | ||
<tr> | ||
<th>Java</th> | ||
|
||
</tr> | ||
<tr> | ||
<td><a href="https://www.youtube.com/watch?v=h8eyY7dIiN4&t=2s">Quick Sort</a></td> | ||
|
||
</tr> | ||
<tr> | ||
<td><a href="https://www.youtube.com/watch?v=bOk35XmHPKs&t=1s">Merge Sort</a></td> | ||
</tr> | ||
<tr> | ||
<td><a href="https://www.youtube.com/watch?v=NFhOrxtXXcM&t=1s">Binary Search</a></td> | ||
</tr> | ||
<tr> | ||
<th>Python</th> | ||
|
||
</tr> | ||
<tr> | ||
<td><a href="https://www.youtube.com/watch?v=kFeXwkgnQ9U&t=1s">Quick Sort</a></td> | ||
|
||
</tr> | ||
<tr> | ||
<td><a href="https://www.youtube.com/watch?v=cVZMah9kEjI&t=1s">Merge Sort</a></td> | ||
</tr> | ||
<tr> | ||
<td><a href="https://www.youtube.com/watch?v=cVZMah9kEjI&t=1s">Binary Search</a></td> | ||
</tr> | ||
|
||
|
||
</table> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You forgot to add a description in each resource. Check this link
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Each language should have its own table like this:
JavaScript
Section name
Resource Name | Description |
---|---|
RESOURCE NAME | RESOURCE DESCRIPTION |
Java
Section name
Resource Name | Description |
---|---|
RESOURCE NAME | RESOURCE DESCRIPTION |
I hope this is clear
You just need to add '>' before the description, why did you close? After that change I can merged it |
This branch has conflicts shall I create new branch and open new PR for review ?,if it is okay I will close this PR. |
You can fix it if you want here |
Description
added algorithms for 3 languages in DSA .
Closes #759
Type of change
Checklist:
Screenshots (if appropriate):
Please add screenshots to help explain your changes.
Additional