Skip to content

Commit 169f141

Browse files
author
boraxpr
committed
bite 77
1 parent c215e93 commit 169f141

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

77/test_uncommon.py

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
from uncommon import uncommon_cities
2+
3+
4+
def test_uncommon_part_overlap():
5+
my_cities = ['Rome', 'Paris', 'Madrid', 'Chicago', 'Seville', 'Berlin']
6+
other_cities = ['Paris', 'Boston', 'Sydney', 'Madrid', 'Moscow', 'Lima']
7+
assert uncommon_cities(my_cities, other_cities) == 8
8+
9+
10+
def test_uncommon_all_same():
11+
my_cities = ['Rome', 'Paris', 'Madrid', 'Chicago', 'Seville', 'Berlin']
12+
other_cities = ['Rome', 'Paris', 'Madrid', 'Chicago', 'Seville', 'Berlin']
13+
assert uncommon_cities(my_cities, other_cities) == 0
14+
15+
16+
def test_uncommon_all_different():
17+
my_cities = ['Rome', 'Paris', 'Madrid']
18+
other_cities = ['Chicago', 'Seville', 'Berlin']
19+
assert uncommon_cities(my_cities, other_cities) == 6

77/uncommon.py

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
def uncommon_cities(my_cities, other_cities):
2+
"""Compare my_cities and other_cities and return the number of different
3+
cities between the two"""
4+
checker = 0
5+
for my_city in my_cities:
6+
for other_city in other_cities:
7+
if my_city == other_city:
8+
checker += 1
9+
return my_cities.__len__() - checker + other_cities.__len__() - checker
10+
11+
12+
# print(uncommon_cities(['Rome', 'Paris', 'Madrid', 'Chicago', 'Seville', 'Berlin'],
13+
# ['Paris', 'Boston', 'Sydney', 'Madrid', 'Moscow', 'Lima']))

0 commit comments

Comments
 (0)