simplePythonProgram icon indicating copy to clipboard operation
simplePythonProgram copied to clipboard

contribute simple python programs university level

Open raviprakashdev opened this issue 4 years ago • 26 comments

raviprakashdev avatar Sep 30 '20 18:09 raviprakashdev

Can you provide which type of programs to be implemented?

AdeshChoudhar avatar Sep 30 '20 18:09 AdeshChoudhar

Can you provide me with the programs?

Alleny244 avatar Sep 30 '20 18:09 Alleny244

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

raviprakashdev avatar Sep 30 '20 18:09 raviprakashdev

Can you provide me with the programs?

you can contribute any simple program in python

raviprakashdev avatar Sep 30 '20 18:09 raviprakashdev

Can I work on this issue?

shrishtrip avatar Sep 30 '20 18:09 shrishtrip

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])`

Alleny244 avatar Sep 30 '20 19:09 Alleny244

Can I work on this issue?

yes

raviprakashdev avatar Sep 30 '20 19:09 raviprakashdev

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

raviprakashdev avatar Sep 30 '20 19:09 raviprakashdev

where is the code base

Alleny244 avatar Sep 30 '20 19:09 Alleny244

where is the code base

https://github.com/raviprakashdev/simplePythonProgram

raviprakashdev avatar Sep 30 '20 19:09 raviprakashdev

Can i work on this issue?

shloka-gupta avatar Sep 30 '20 19:09 shloka-gupta

Can i work on this issue?

yes

raviprakashdev avatar Sep 30 '20 19:09 raviprakashdev

Let me also contribute 😄

appsplash99 avatar Sep 30 '20 19:09 appsplash99

Let me also contribute 😄

sure plzz contribute

raviprakashdev avatar Sep 30 '20 19:09 raviprakashdev

can i contribute?

dhruvapratap avatar Sep 30 '20 22:09 dhruvapratap

@raviprakashdev Are you going to assign this issue? Or we have to just submit pull requests?

AdeshChoudhar avatar Sep 30 '20 23:09 AdeshChoudhar

@raviprakashdev Can I work on the quick sort?

girishtulabandu avatar Oct 01 '20 04:10 girishtulabandu

can i contribute?

yes

raviprakashdev avatar Oct 01 '20 08:10 raviprakashdev

@raviprakashdev Are you going to assign this issue? Or we have to just submit pull requests?

just submit the pull request

raviprakashdev avatar Oct 01 '20 08:10 raviprakashdev

@raviprakashdev Can I work on the quick sort?

yes

raviprakashdev avatar Oct 01 '20 08:10 raviprakashdev

I want to contribute to this can I?

abhinav-193 avatar Oct 01 '20 12:10 abhinav-193

I want to contribute to this can I?

yes

raviprakashdev avatar Oct 01 '20 14:10 raviprakashdev

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.

jaypaliwal1212 avatar Oct 05 '20 11:10 jaypaliwal1212

@raviprakashdev Can I contribute to this repo?

tushar2407 avatar Oct 05 '20 14:10 tushar2407

@raviprakashdev Can I contribute to this repo?

yes

raviprakashdev avatar Oct 07 '20 05:10 raviprakashdev

hey i want to contribute to this repo

akashAD98 avatar Oct 17 '20 05:10 akashAD98