Димитър обнови решението на 09.03.2014 00:48 (преди над 10 години)
+def wow_such_much(start, end):
+ list = []
+ while start < end:
+ a = ''
+ if start % 3 == 0:
+ a += 'such'
+ if start % 5 == 0:
+ a += 'much'
+ if a == '':
+ list.append(str(start))
+ else:
+ list.append(a)
+ start += 1
+ return list
+
+
+def count_doge_words(a):
+ a.lower()
+ list = ["wow", "such", "much", "lol", "so", "very"]
+ counter = 0
+ for word in list:
+ counter += a.count(word)
+ return counter