Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 0 additions & 20 deletions README.md

This file was deleted.

33 changes: 33 additions & 0 deletions SOLUTION
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# FINDING THE MODE OF A DATA SET
a=[]
print("THE DATA SET CAN BE UN-SORTED AND THE ELEMENTS NEED NOT BE UNIQUE")
print("*** **** *** *** ** ********* *** *** ******** **** *** ** ******")
print("PRESS * TO STOP ENETRING ELEMENTS")
print("******* ** **** ******** ********")
n=input("Enter the first element")
while(n!='*'):
y=int(n)
a.append(y)
n=input("Enter the next element")
print("You have eneterd the following set of data:",a)
modes=[]
old_count=0
new_count=0
i=0
evalted=[]
for x in a:
if x in evalted:
pass
else:
new_count=a.count(x)
if old_count<new_count:
modes[0:]=[]
modes.append(x)
old_count=new_count
elif old_count==new_count:
modes.append(x)
old_count=new_count
evalted.append(x)
i+=1
print("The mode/s is/are:",modes)