Skip to content
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

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Open

Conversation

tomina-s
Copy link

Томина Светлана

небольшие правки
корректировка комментариев и выводов ф-ций
добавлено 2ое решение, комментарии и вывод по заданию
добавлены комментарии
добавлено еще одно решение
"""
lst_to_set = set(lst_obj) # !!!
lst_to_set = set(lst_obj) # !!! O(len(lsr_obj)) = O(n), где n - длина списка lst_obj
Copy link
Owner

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:]: вложен в цикл, чья сложность линейная,
Copy link
Owner

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) - линейно-логарифмическая
"""
Copy link
Owner

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:
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Светлана, у вас отступы - табуляция. что недопустимо

Copy link
Author

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')

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

аналогично, нужно убрать табуляцию


# 3) сделайте вывод, какое решение эффективнее и почему
# первое решение эффективнее, тк его сложность - константная, что меньше чем у 2ого решения, где сложность линейная
# этого удалось добиться, используя встроенный ф-ции работы со словарем
Copy link
Owner

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())

Copy link
Owner

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')

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

аналогично

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants