-
Notifications
You must be signed in to change notification settings - Fork 15
Added Bubble Sort Algorithm #20
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
base: main
Are you sure you want to change the base?
Conversation
Algorithms/Python/test.py
Outdated
| @@ -0,0 +1,16 @@ | |||
| def bubble_sort(arr): | |||
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.
Please rename your file to actual algo name, instead of test.py.
| @@ -0,0 +1,31 @@ | |||
| public class BubbleSort { | |||
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.
Please rename your file to actual algo name, instead of test.java
Name updated
Pythone script Name update
Algorithms/Python/BurbleSort.py
Outdated
| @@ -0,0 +1,16 @@ | |||
| def bubble_sort(arr): | |||
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.
It should be BubbleSort.py, not BurbleSort.py
| @@ -0,0 +1,31 @@ | |||
| public class BubbleSort { | |||
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.
It should be BubbleSort.java, not BurbleSort.java
I've changed it from BurbleSort to BubbleSort as you requested sir.
I added this algorith to the specified location.