├── .gitignore ├── AlgorithmsIntensive ├── day_1 │ ├── break_the_palindrome.py │ ├── buy_sell.py │ ├── stairs.py │ └── trains.py ├── day_2 │ ├── majority.py │ ├── rejected_samples.py │ ├── repeating_number.py │ ├── two_out_of_three.py │ └── words_replacement.py ├── day_3 │ ├── anagram.py │ ├── boomers_zoomers.py │ ├── caws_in_stalls.py │ ├── number_of_positive.py │ └── potion.py └── day_4 │ ├── file_path.py │ ├── groups_and_rooms.py │ ├── offer_selection.py │ ├── socks.py │ └── subtrees_size.py ├── README.md └── internWeekOffer2022 ├── a_attractions.py └── b_even_sub_list.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostin-001/yandex_contest/HEAD/.gitignore -------------------------------------------------------------------------------- /AlgorithmsIntensive/day_1/break_the_palindrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostin-001/yandex_contest/HEAD/AlgorithmsIntensive/day_1/break_the_palindrome.py -------------------------------------------------------------------------------- /AlgorithmsIntensive/day_1/buy_sell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostin-001/yandex_contest/HEAD/AlgorithmsIntensive/day_1/buy_sell.py -------------------------------------------------------------------------------- /AlgorithmsIntensive/day_1/stairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostin-001/yandex_contest/HEAD/AlgorithmsIntensive/day_1/stairs.py -------------------------------------------------------------------------------- /AlgorithmsIntensive/day_1/trains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostin-001/yandex_contest/HEAD/AlgorithmsIntensive/day_1/trains.py -------------------------------------------------------------------------------- /AlgorithmsIntensive/day_2/majority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostin-001/yandex_contest/HEAD/AlgorithmsIntensive/day_2/majority.py -------------------------------------------------------------------------------- /AlgorithmsIntensive/day_2/rejected_samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostin-001/yandex_contest/HEAD/AlgorithmsIntensive/day_2/rejected_samples.py -------------------------------------------------------------------------------- /AlgorithmsIntensive/day_2/repeating_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostin-001/yandex_contest/HEAD/AlgorithmsIntensive/day_2/repeating_number.py -------------------------------------------------------------------------------- /AlgorithmsIntensive/day_2/two_out_of_three.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostin-001/yandex_contest/HEAD/AlgorithmsIntensive/day_2/two_out_of_three.py -------------------------------------------------------------------------------- /AlgorithmsIntensive/day_2/words_replacement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostin-001/yandex_contest/HEAD/AlgorithmsIntensive/day_2/words_replacement.py -------------------------------------------------------------------------------- /AlgorithmsIntensive/day_3/anagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostin-001/yandex_contest/HEAD/AlgorithmsIntensive/day_3/anagram.py -------------------------------------------------------------------------------- /AlgorithmsIntensive/day_3/boomers_zoomers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostin-001/yandex_contest/HEAD/AlgorithmsIntensive/day_3/boomers_zoomers.py -------------------------------------------------------------------------------- /AlgorithmsIntensive/day_3/caws_in_stalls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostin-001/yandex_contest/HEAD/AlgorithmsIntensive/day_3/caws_in_stalls.py -------------------------------------------------------------------------------- /AlgorithmsIntensive/day_3/number_of_positive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostin-001/yandex_contest/HEAD/AlgorithmsIntensive/day_3/number_of_positive.py -------------------------------------------------------------------------------- /AlgorithmsIntensive/day_3/potion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostin-001/yandex_contest/HEAD/AlgorithmsIntensive/day_3/potion.py -------------------------------------------------------------------------------- /AlgorithmsIntensive/day_4/file_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostin-001/yandex_contest/HEAD/AlgorithmsIntensive/day_4/file_path.py -------------------------------------------------------------------------------- /AlgorithmsIntensive/day_4/groups_and_rooms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostin-001/yandex_contest/HEAD/AlgorithmsIntensive/day_4/groups_and_rooms.py -------------------------------------------------------------------------------- /AlgorithmsIntensive/day_4/offer_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostin-001/yandex_contest/HEAD/AlgorithmsIntensive/day_4/offer_selection.py -------------------------------------------------------------------------------- /AlgorithmsIntensive/day_4/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostin-001/yandex_contest/HEAD/AlgorithmsIntensive/day_4/socks.py -------------------------------------------------------------------------------- /AlgorithmsIntensive/day_4/subtrees_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostin-001/yandex_contest/HEAD/AlgorithmsIntensive/day_4/subtrees_size.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostin-001/yandex_contest/HEAD/README.md -------------------------------------------------------------------------------- /internWeekOffer2022/a_attractions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostin-001/yandex_contest/HEAD/internWeekOffer2022/a_attractions.py -------------------------------------------------------------------------------- /internWeekOffer2022/b_even_sub_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kostin-001/yandex_contest/HEAD/internWeekOffer2022/b_even_sub_list.py --------------------------------------------------------------------------------