Skip to content

Commit 99733fa

Browse files
committed
📝 Update docs and clustering notes
1 parent 3304a78 commit 99733fa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+143
-4
lines changed

Docs/1. Python/README.MD

+84
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

Docs/1. Python/img/1.png

185 KB

Docs/1. Python/img/10.png

65.9 KB

Docs/1. Python/img/11.png

59.8 KB

Docs/1. Python/img/2.png

117 KB

Docs/1. Python/img/3.png

122 KB

Docs/1. Python/img/4.png

125 KB

Docs/1. Python/img/5.png

81.1 KB

Docs/1. Python/img/6.png

53.2 KB

Docs/1. Python/img/7.png

79.9 KB

Docs/1. Python/img/8.png

64.5 KB

Docs/1. Python/img/9.png

56.1 KB

Docs/1. Python/img/dinamic.png

122 KB

Docs/2. Django/README.md

Docs/3. DRF/README.md

Docs/4. DataScience/README.md

+26
97.6 KB
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
def factorial(n):
2+
"""Calcula el factorial de n
3+
n int > 0
4+
return n!
5+
"""
6+
7+
if n == 1:
8+
return 1
9+
10+
return n * factorial(n - 1)
11+
n = int(input('Escribe un valor: '))
12+
print(f'{factorial(n)} combinaciones posibles (Factorial)')
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
12.9 KB

README.md

+21-4

0 commit comments

Comments
 (0)