-
Notifications
You must be signed in to change notification settings - Fork 180
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tomina s lesson 1 #1265
base: master
Are you sure you want to change the base?
Tomina s lesson 1 #1265
Conversation
небольшие правки
корректировка комментариев и выводов ф-ций
добавлено 2ое решение, комментарии и вывод по заданию
добавлены комментарии
добавлено еще одно решение
""" | ||
lst_to_set = set(lst_obj) # !!! | ||
lst_to_set = set(lst_obj) # !!! O(len(lsr_obj)) = O(n), где n - длина списка lst_obj |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
выполнено
@@ -41,12 +42,13 @@ def check_2(lst_obj): | |||
что такой элемент отстутствует | |||
в оставшихся справа элементах | |||
|
|||
Сложность: !!!. | |||
Сложность: !!! if lst_obj[j] in lst_obj[j+1:]: вложен в цикл, чья сложность линейная, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
выполнено
@@ -57,14 +59,14 @@ def check_3(lst_obj): | |||
Вначале выполним для списка сортировку, далее, сравниваем элементы попарно | |||
Если присутствуют дубли, они будут находиться рядом. | |||
|
|||
Сложность: !!! | |||
Сложность: !!! по доминанте - сложность O(N*logN) - линейно-логарифмическая | |||
""" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
выполнено
elem_min = lst[0] | ||
for index in range(len(lst)): # O(n) | ||
for elem_second in lst[index + 1 : ]: # O(n-1) | ||
if lst[index] > elem_second: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Светлана, у вас отступы - табуляция. что недопустимо
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
не совсем поняла ошибку. нужно 4 проблема ставить?
если слетают отступы - использую настройку View - Identation - Convert Identation To Spaces
(код пишу в Sublime text)
print('2 решение - Список компаний с наибольшей годовой прибылью:', find_top_profit_2(companies_info), '\n') | ||
print('3 решение - Список компаний с наибольшей годовой прибылью:', find_top_profit_3(companies_info), '\n') | ||
print('4 решение - Список компаний с наибольшей годовой прибылью:', find_top_profit_4(companies_info), '\n') | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
аналогично, нужно убрать табуляцию
|
||
# 3) сделайте вывод, какое решение эффективнее и почему | ||
# первое решение эффективнее, тк его сложность - константная, что меньше чем у 2ого решения, где сложность линейная | ||
# этого удалось добиться, используя встроенный ф-ции работы со словарем |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
аналогично
print('Стопка тарелок:', kitchen.elems, '\n') | ||
print('Колличество тарелок:', kitchen.stack_size() ) | ||
print('Колличество стопок тарелок:', kitchen.stack_count()) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
аналогично
print("--------- Задача на поиск палиндрома -----------") | ||
print("палиндром? - ", pal_checker_2("молоко делили ледоколом"), '\n') | ||
print("палиндром? - ", pal_checker_2("топ от"), '\n') | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
аналогично
- отступы-табы заменены на пробелы
Томина Светлана