Open raviprakashdev opened 4 years ago
Can you provide me with the programs?
Can you provide which type of programs to be implemented?
any python program that can help university students in learning python from basics like sorting, searching
Can you provide me with the programs?
you can contribute any simple program in python
Can I work on this issue?
python program for bubble sort
`def bubbleSort(ar): n = len(arr)
for i in range(n):
for j in range(0, n-i-1):
if ar[j] > ar[j+1] :
ar[j], ar[j+1] = ar[j+1], ar[j]
ar = ['t','u','t','o','r','i','a','l'] bubbleSort(ar) print ("Sorted array is:") for i in range(len(ar)): print (ar[i])`
Can I work on this issue?
yes
python program for bubble sort
`def bubbleSort(ar): n = len(arr)
Traverse through all array elements
for i in range(n):
Last i elements are already in correct position
for j in range(0, n-i-1):
Swap if the element found is greater than the next element
if ar[j] > ar[j+1] : ar[j], ar[j+1] = ar[j+1], ar[j]
Driver code to test above
ar = ['t','u','t','o','r','i','a','l'] bubbleSort(ar) print ("Sorted array is:") for i in range(len(ar)): print (ar[i])`
write the code in code base
where is the code base
where is the code base
Can i work on this issue?
Can i work on this issue?
yes
Let me also contribute 😄
Let me also contribute 😄
sure plzz contribute
can i contribute?
@raviprakashdev Are you going to assign this issue? Or we have to just submit pull requests?
@raviprakashdev Can I work on the quick sort?
can i contribute?
yes
@raviprakashdev Are you going to assign this issue? Or we have to just submit pull requests?
just submit the pull request
@raviprakashdev Can I work on the quick sort?
yes
I want to contribute to this can I?
I want to contribute to this can I?
yes
Is this repository participating in hacktober fest? Asking because according to Hacktoberfest, My PR was submitted to a repository that is not participating in Hacktoberfest. @raviprakashdev needs to add the "hacktoberfest" topic to their repository if they wish to participate.
@raviprakashdev Can I contribute to this repo?
@raviprakashdev Can I contribute to this repo?
yes
hey i want to contribute to this repo
Can you provide which type of programs to be implemented?