Йордан обнови решението на 12.03.2014 12:27 (преди над 10 години)
+def wow_such_much(start, end):
+ """
+ Build list of strings with all the numbers from start to end
+ where the numbers which can be divisible to 3 are replaced with 'such',
+ those that are divisible to 5 are replaced with 'much' and those
+ that are divisible to 3 and 5 are replaced with 'suchmuch'
+
+ Args:
+ start : the starting number
+ end : the end number
+
+ Returns:
+ such_much_list: list of strings where the qualified numbers are replaced
+ with such, much or suchmuch
+ """
+ such_much_list = []
+ for number in range(start, end):
+ string_to_append = ''
+ if number % 3 == 0:
+ string_to_append += 'such'
+ if number % 5 == 0:
+ string_to_append += 'much'
+ if not string_to_append:
+ string_to_append = str(number)
+ such_much_list.append(string_to_append)
+ return such_much_list
+
+def count_doge_words(input_str):
+ """
+ Count the frequency of 'parasitic' doge words in a string
+
+ Args:
+ input_str : input string
+
+ Returns:
+ sum of the frequencies of all 'parasitic' doge words in the input string
+ """
+ doge_words = {'very', 'wow', 'lol', 'much', 'so', 'such'}
+ input_words = [i for i in input_str.split()]
+ return sum(input_words.count(word) for word in doge_words)
Супер си се справил, единствено бих пренаписал тези два реда:
input_words = [i for i in input_str.split()]
return sum(input_words.count(word) for word in doge_words)
в един.
Може ли някой да ми даде разяснение какви грешки съм допуснал за да ми буде отнета точка. Най-малко за да знам за следващия път да не допускам същите грешки.
Поздрави
Защото в понеделник обяснихме, че не трябва да слагате типа на променливата в името ѝ.