Skip to content

Commit

Permalink
add: unidad1 y unidad2 listas
Browse files Browse the repository at this point in the history
  • Loading branch information
pabloaguiars committed Apr 24, 2019
1 parent 3cc28c7 commit 9abafbb
Show file tree
Hide file tree
Showing 244 changed files with 17,475 additions and 0 deletions.
25 changes: 25 additions & 0 deletions Nueva carpeta/cuadricula.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
text = ""
f = open("cuadricula.txt","w")

"""
print column numbers
text = "\t"
for number in range(1,81):
text = text + str(number) + "\t"
f.write(text)
"""

#print -
for row in range(0,25):
""" text = text + str(row) + "\t" """
#columns
for column in range(0,80):
#next column
text = text + "-"
#write the result
f.write(text)
#new row
text = "\n"

#close file
f.close()
25 changes: 25 additions & 0 deletions Nueva carpeta/cuadricula.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
---------------------------------------*----------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Binary file added Nueva carpeta/hack/.vs/hack/v15/.suo
Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
25 changes: 25 additions & 0 deletions Nueva carpeta/hack/hack.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.28010.2036
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "hack", "hack\hack.csproj", "{1CB20101-6700-45A1-A44A-83AE18F5D096}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{1CB20101-6700-45A1-A44A-83AE18F5D096}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1CB20101-6700-45A1-A44A-83AE18F5D096}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1CB20101-6700-45A1-A44A-83AE18F5D096}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1CB20101-6700-45A1-A44A-83AE18F5D096}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {D52885CD-C92D-4C2F-82AB-4931155FEB95}
EndGlobalSection
EndGlobal
6 changes: 6 additions & 0 deletions Nueva carpeta/hack/hack/App.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
</startup>
</configuration>
206 changes: 206 additions & 0 deletions Nueva carpeta/hack/hack/Form1.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 9abafbb

Please sign in to comment.