-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWho Likes It?.py
36 lines (28 loc) · 1.29 KB
/
Who Likes It?.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
'''
Created on Nov 13, 2018
@author: kroberts
PROBLEM STATEMENT:
You probably know the "like" system from Facebook and other pages. People can "like" blog posts,
pictures or other items. We want to create the text that should be displayed next to such an item.
Implement a function likes :: [String] -> String, which must take in input array, containing the names
of people who like an item. It must return the display text as shown in the examples:
likes [] // must be "no one likes this"
likes ["Peter"] // must be "Peter likes this"
likes ["Jacob", "Alex"] // must be "Jacob and Alex like this"
likes ["Max", "John", "Mark"] // must be "Max, John and Mark like this"
likes ["Alex", "Jacob", "Mark", "Max"] // must be "Alex, Jacob and 2 others like this"
For 4 or more names, the number in and 2 others simply increases.
'''
def likes(names):
num_people = len(names)
if num_people > 0:
if num_people == 1:
print(names[0],'likes this')
elif num_people == 2:
print('%s and %s like this'%(names[0], names[1]))
elif num_people == 3:
print('%s, %s and %s like this'%(names[0],names[1],names[2]))
else:
print('%s, %s and %d others like this'%(names[0], names[1], num_people-2))
else:
print('no one likes this')