raviprakashdev / simplePythonProgram

21 stars 55 forks source link

contribute simple python programs university level #1

Open raviprakashdev opened 4 years ago

AdeshChoudhar commented 4 years ago

Can you provide which type of programs to be implemented?

Alleny244 commented 4 years ago

Can you provide me with the programs?

raviprakashdev commented 4 years ago

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 commented 4 years ago

Can you provide me with the programs?

you can contribute any simple program in python

shrishtrip commented 4 years ago

Can I work on this issue?

Alleny244 commented 4 years ago

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

raviprakashdev commented 4 years ago

Can I work on this issue?

yes

raviprakashdev commented 4 years ago

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

Alleny244 commented 4 years ago

where is the code base

raviprakashdev commented 4 years ago

where is the code base

https://github.com/raviprakashdev/simplePythonProgram

shloka-gupta commented 4 years ago

Can i work on this issue?

raviprakashdev commented 4 years ago

Can i work on this issue?

yes

appsplash99 commented 4 years ago

Let me also contribute 😄

raviprakashdev commented 4 years ago

Let me also contribute 😄

sure plzz contribute

dhruvapratap commented 4 years ago

can i contribute?

AdeshChoudhar commented 4 years ago

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

girishtulabandu commented 4 years ago

@raviprakashdev Can I work on the quick sort?

raviprakashdev commented 4 years ago

can i contribute?

yes

raviprakashdev commented 4 years ago

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

just submit the pull request

raviprakashdev commented 4 years ago

@raviprakashdev Can I work on the quick sort?

yes

abhinav-193 commented 4 years ago

I want to contribute to this can I?

raviprakashdev commented 4 years ago

I want to contribute to this can I?

yes

jaypaliwal1212 commented 4 years ago

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.

tushar2407 commented 4 years ago

@raviprakashdev Can I contribute to this repo?

raviprakashdev commented 4 years ago

@raviprakashdev Can I contribute to this repo?

yes

akashAD98 commented 4 years ago

hey i want to contribute to this repo