Toggle navigation
Toggle navigation
This project
Loading...
Sign in
이재용
/
gitbranch.assignment_3
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
이재용
2020-04-03 22:58:31 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
1009a68c0824f59b76337bfc9ffeaba472eb2bae
1009a68c
0 parents
GCD file added
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
49 additions
and
0 deletions
GCD.ipynb
GCD.ipynb
0 → 100644
View file @
1009a68
{
"cells"
:
[
{
"cell_type"
:
"code"
,
"execution_count"
:
1
,
"metadata"
:
{},
"outputs"
:
[
{
"name"
:
"stdout"
,
"output_type"
:
"stream"
,
"text"
:
[
"50
\n
"
]
}
],
"source"
:
[
"def GCD(num1,num2):
\n
"
,
" if num2 ==0:
\n
"
,
" return num1
\n
"
,
" return GCD(num2,num1%num2)
\n
"
,
"
\n
"
,
"print(GCD(50,100))
\n
"
,
"
\n
"
,
" "
]
}
],
"metadata"
:
{
"kernelspec"
:
{
"display_name"
:
"Python 3"
,
"language"
:
"python"
,
"name"
:
"python3"
},
"language_info"
:
{
"codemirror_mode"
:
{
"name"
:
"ipython"
,
"version"
:
3
},
"file_extension"
:
".py"
,
"mimetype"
:
"text/x-python"
,
"name"
:
"python"
,
"nbconvert_exporter"
:
"python"
,
"pygments_lexer"
:
"ipython3"
,
"version"
:
"3.7.3"
}
},
"nbformat"
:
4
,
"nbformat_minor"
:
2
}
Please
register
or
login
to post a comment