Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
programming_python
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Трофимцова Екатерина Евгеньевна
programming_python
Commits
e6381dce
Commit
e6381dce
authored
Oct 08, 2025
by
Трофимцова Екатерина Евгеньевна
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Чекинатор lab_3
parent
b04efe5a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
README.md
lab_3/README.md
+1
-1
checkinator.py
lab_3/checkinator.py
+7
-0
No files found.
lab_3/README.md
View file @
e6381dce
# Лабораторная работа №
2
. Построение бинарного дерева
# Лабораторная работа №
3
. Построение бинарного дерева
### 1.1 Постановка задачи
### 1.1 Постановка задачи
...
...
lab_3/checkinator.py
0 → 100644
View file @
e6381dce
def
factorial_dict
(
n
:
int
,
res
=
1
)
->
dict
:
"""Рекурсивный факториал"""
print
(
res
)
if
n
==
1
:
return
{
str
(
n
):
res
}
sub
=
factorial_dict
(
n
-
1
,
res
*
n
)
return
{
str
(
n
):
sub
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment