Python Programming DSBA 2023/24 — различия между версиями
Aspronina (обсуждение | вклад) м |
Aspronina (обсуждение | вклад) м |
||
Строка 36: | Строка 36: | ||
{| class="wikitable" style="text-align:center" | {| class="wikitable" style="text-align:center" | ||
|- | |- | ||
− | ! Contest !! Deadline !! Topic | + | ! Contest !! Deadline !! Topic |
|- | |- | ||
|| [https://official.contest.yandex.ru/contest/52133/enter/ Contest 1] || 24 sep 2023, 23:59:59 || Arithmetics | || [https://official.contest.yandex.ru/contest/52133/enter/ Contest 1] || 24 sep 2023, 23:59:59 || Arithmetics | ||
Строка 48: | Строка 48: | ||
|| [https://official.contest.yandex.ru/contest/53874/enter/ Contest 5] || 23 oct 2023, 23:59:59 || Sets and dictionaries | || [https://official.contest.yandex.ru/contest/53874/enter/ Contest 5] || 23 oct 2023, 23:59:59 || Sets and dictionaries | ||
|} | |} | ||
+ | |||
+ | === Contest Restrictions === | ||
+ | |||
+ | {| class="wikitable" | ||
+ | |- | ||
+ | ! Contest !! Special Requirements | ||
+ | |- | ||
+ | || Contest 1 || | ||
+ | '''#18:''' use +, -, *, /, //, %, ** only | ||
+ | |- | ||
+ | || Contest 2 || | ||
+ | '''#11:''' do not use conditionals, do not use loops <br> | ||
+ | '''#13:''' do not use conditionals, do not use loops <br> | ||
+ | '''#17:''' do not use loops, do not use .count() | ||
+ | |- | ||
+ | || Contest 3 || | ||
+ | '''#10:''' do not change the initial list <br> | ||
+ | '''#11:''' it is a must to change the initial list <br> | ||
+ | '''#15:''' it is a must to change initial list, do not use additional lists <br> | ||
+ | '''#16:''' it is a must to change initial list, do not use additional lists, do not use .insert() <br> | ||
+ | '''#20:''' one pass through the list only | ||
+ | |- | ||
+ | || Contest 4 || | ||
+ | In all problems of this contest, please, make sure that the function's name, <br> | ||
+ | parameters and return type correspond to the problem statement <br> | ||
+ | '''#9:''' complexity O(sqrt(n)) <br> | ||
+ | '''#10:''' complexity O(sqrt(n)) <br> | ||
+ | '''#11:''' do not use pow(), do not use ** <br> | ||
+ | '''#12:''' use +1 and -1 only, do not use loops <br> | ||
+ | '''#13:''' complexity O(log(n)) <br> | ||
+ | '''#16:''' do not use loops <br> | ||
+ | '''#18:''' do not use lists, strings or similar data structures <br> | ||
+ | '''#19:''' do not use lists, strings or similar data structures <br> | ||
+ | |- | ||
+ | || Contest 5 || | ||
+ | no special requirements | ||
+ | |} | ||
+ | |||
+ | === Defences === | ||
You may be asked to '''defend''' your HW solutions. This means that you are invited to discuss what you have done in your work with a seminar instructor or a TA. The defenses take places '''offline''', the time is scheduled independently each time with consideration of the both sides’ timetables. You will be notified about the upcoming event in the chat. | You may be asked to '''defend''' your HW solutions. This means that you are invited to discuss what you have done in your work with a seminar instructor or a TA. The defenses take places '''offline''', the time is scheduled independently each time with consideration of the both sides’ timetables. You will be notified about the upcoming event in the chat. |
Версия 23:37, 14 октября 2023
In case you find any inconsistencies on this page, please, contact @l_AnnaPronina_l.
Содержание
Teachers and assistants
Group | 231 | 232 | 233 | 234 | 235 | |
---|---|---|---|---|---|---|
Lecturer | Voznesenskaya T.V.
tvoznesenskaya@hse.ru , tg: @tvozn | |||||
Workshop Instructor | 231-1: Rudakov K.A. tg: @ArcticBEARD 231-2: Smirnov I.V. tg: @JanKrig |
232-1: Rudakov K.A. tg: @ArcticBEARD 232-2: Smirnov I.V. tg: @JanKrig |
233-1, 233-2: Kopylov I.S. tg: @DanielWalker |
234-1: Dovgopolyi I.A. tg: @TriariiMisha 234-2: Ivanov A.P. tg: @Olenek0 |
235-1, 235-2: Rudakov K.A. tg: @ArcticBEARD | |
Teaching Assistant | 231-1: Pronina Anna tg: @l_AnnaPronina_l 231-2: Kulakov Denis tg: @Kulakov_Denis |
232-1: Pronina Anna tg: @l_AnnaPronina_l 232-2: Kulakov Denis tg: @Kulakov_Denis |
233-1, 233-2: Shakhmin Pavel tg: @rotanimoddFPV |
234-1, 234-2: Argirov George tg: @gotchaya |
235-1, 235-2: Valami Benyamin tg: @MaxmilesV | |
Head TA | Pronina Anna tg: @l_AnnaPronina_l |
Grading system
Contests
Contest | Deadline | Topic |
---|---|---|
Contest 1 | 24 sep 2023, 23:59:59 | Arithmetics |
Contest 2 | 1 oct 2023, 23:59:59 | While, float, strings |
Contest 3 | 9 oct 2023, 23:59:59 | Lists and tuples |
Contest 4 | 16 oct 2023, 23:59:59 | Functions |
Contest 5 | 23 oct 2023, 23:59:59 | Sets and dictionaries |
Contest Restrictions
Contest | Special Requirements |
---|---|
Contest 1 |
#18: use +, -, *, /, //, %, ** only |
Contest 2 |
#11: do not use conditionals, do not use loops |
Contest 3 |
#10: do not change the initial list |
Contest 4 |
In all problems of this contest, please, make sure that the function's name, |
Contest 5 |
no special requirements |
Defences
You may be asked to defend your HW solutions. This means that you are invited to discuss what you have done in your work with a seminar instructor or a TA. The defenses take places offline, the time is scheduled independently each time with consideration of the both sides’ timetables. You will be notified about the upcoming event in the chat.
During the defence you may be asked to:
- explain your solution
- modify your code with correspondence to some new conditions stated by the instructor/assistant
- solve the same or a similar problem either on paper or in IDE - it is up to the instructor/assistant’s choice
- identify (recognize) your solution among some others
- etc.
Please, take into account that if you do no show up on the defense, you automatically get 0 points for the contest that was about to be discussed.
Grades
The results table with all your grades can be found by this link.
Lecture notes
Date | Lecture | Topic |
---|---|---|
11 sep | Lecture 1 | Introduction |
18 sep | Lecture 2 | Numeral systems. Real numbers. Strings |
25 sep | Lecture 3 | Lists and tuples |
2 oct | Lecture 4 | Functions and recursion |
Workshop notes
Workshop 1: Introduction
Workshop 2: Numeral systems
Workshop 3: Float and Strings
Workshop 4: Strings
Workshop 5: Lists and tuples
Workshop 6: Lists and tuples
Workshops 7-8: Functions and recursion
Workshop 9: Sets and dictionaries
Workshop 10: Sets and dictionaries