Георги обнови решението на 12.03.2014 11:23 (преди над 10 години)
+def wow_such_much(start, end):
+ result = []
+ for i in range(start, end):
+ if i % 15 == 0:
+ result.append('suchmuch')
+ elif i % 5 == 0:
+ result.append('much')
+ elif i % 3 == 0:
+ result.append('such')
+ else:
+ result.append(str(i))
+ return result
+
+def count_doge_words(sentence):
+ parasitic_words = ('wow', 'lol', 'so', 'such', 'much', 'very')
+ sentence_words = sentence.split()
+ result = 0
+ for word in parasitic_words:
+ result += sentence_words.count(word)
+ return result
Единствено някои имена не ме кефят:
-
result
е прекалено общо -
sentence_words
- по-скоро самоwords