├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ └── proyecto-i---curso-24-25.md └── workflows │ └── build-exercises.yaml ├── .gitignore ├── Readme.md ├── animations ├── .gitignore ├── manim.cfg └── search_sort.py ├── conferences ├── 2023 │ ├── 01-intro │ │ ├── Readme.md │ │ ├── expressions │ │ │ ├── Program.cs │ │ │ └── expressions.csproj │ │ ├── hello-world-oldskool │ │ │ ├── Program.cs │ │ │ └── hello-world-oldskool.csproj │ │ ├── hello-world │ │ │ ├── Program.cs │ │ │ └── hello-world.csproj │ │ ├── order │ │ │ ├── Program.cs │ │ │ └── order.csproj │ │ └── variables │ │ │ ├── Program.cs │ │ │ └── variables.csproj │ ├── 02-conditionals │ │ ├── eliza │ │ │ ├── Program.cs │ │ │ └── eliza.csproj │ │ └── script.md │ ├── 03-functions │ │ ├── Readme.md │ │ └── src │ │ │ ├── Program.cs │ │ │ └── src.csproj │ ├── 04-arrays │ │ └── src │ │ │ ├── Program.cs │ │ │ ├── src.csproj │ │ │ └── words.txt │ ├── 05-classes │ │ ├── App │ │ │ ├── App.csproj │ │ │ └── Program.cs │ │ ├── Sets.sln │ │ ├── Sets │ │ │ ├── Set.cs │ │ │ └── Sets.csproj │ │ └── makefile │ ├── 06-sorting │ │ ├── MatCom.Sorting.Tester │ │ │ ├── MatCom.Sorting.Tester.csproj │ │ │ └── Program.cs │ │ ├── MatCom.Sorting │ │ │ ├── MatCom.Sorting.csproj │ │ │ └── Sort.cs │ │ ├── Readme.md │ │ ├── Sorting.sln │ │ └── makefile │ ├── 07-algebra │ │ ├── Algebra.sln │ │ ├── Algetool │ │ │ ├── Algetool.csproj │ │ │ ├── Matrix.cs │ │ │ └── Vector.cs │ │ └── App │ │ │ ├── App.csproj │ │ │ └── Program.cs │ ├── 08-matrices │ │ ├── Rogue.sln │ │ ├── RogueGame │ │ │ ├── Program.cs │ │ │ └── RogueGame.csproj │ │ ├── RogueLogic │ │ │ ├── Game.cs │ │ │ └── RogueLogic.csproj │ │ └── makefile │ ├── 09-recursion │ │ ├── README.md │ │ ├── makefile │ │ └── recursion │ │ │ ├── recursion.sln │ │ │ └── src │ │ │ ├── Program.cs │ │ │ └── src.csproj │ ├── 10-more-recursion │ │ ├── 01 Review Recursividad.pptx │ │ └── README.md │ ├── 11-divide-and-conquer │ │ ├── 02 Recursuvidad. Divide y Venceras.pptx │ │ ├── 02_Divide_y_Venceras │ │ │ ├── 01_ReviewRecursion.cs │ │ │ ├── 02_Divide_y_Venceras │ │ │ │ ├── 02_Busqueda_y_Ordenacion.csproj │ │ │ │ ├── 02_Divide_y_Venceras.sln │ │ │ │ └── Program.cs │ │ │ ├── 02_Divide_y_Venceras_BusquedaBinaria_Ordenacion.cs │ │ │ └── 02_SubsecuenciaSumaMaxima.cs │ │ └── 02_SubsecuenciaSumaMaxima │ │ │ ├── 02_SubsecuenciaSumaMaxima.csproj │ │ │ └── Program.cs │ ├── 12-backtrack │ │ ├── 03 SubSecSumaMax. Backtracking.pptx │ │ ├── 03_Backtracking │ │ │ ├── 03_Backtracking.sln │ │ │ ├── 03_UbicarReinas.csproj │ │ │ └── Program.cs │ │ └── 03_Laberinto │ │ │ ├── 03_Laberinto.csproj │ │ │ └── Program.cs │ ├── 13-combinatorial │ │ ├── 04 Combinatoria. El problema del viajante.pptx │ │ └── 04_Combinatoria.cs │ ├── 14-inheritance │ │ ├── 05_OOP_Review_Diseccionando_Stopwatch.cs │ │ ├── 05_OOP_Review_Jerarquia_de_Figuras.cs │ │ └── 05_OOP_Review_Ordenando_Array_de_Figuras.cs │ ├── 15-genericity-and-interfaces │ │ ├── 06 Genericidad_Interfaces 1.pptx │ │ ├── 06_1 BuscarCon==.cs │ │ ├── 06_2 BuscarCon Equals.cs │ │ ├── 06_3 BuscarCon Genericidad e Interfaces.cs │ │ ├── 06_4 Ordenacion.cs │ │ └── 06_5 OrdenacionCon Genericidad e Interfaces.cs │ ├── 16-ienumerable-and-ienumerator │ │ ├── Program01.cs │ │ ├── Program02.cs │ │ ├── Program03.cs │ │ ├── Program04.cs │ │ └── Program05.cs │ ├── 17-ilist-and-icollection │ │ ├── 08 ICollection, IList, List.pptx │ │ ├── ProgramArrayList.cs │ │ └── ProgramLinkedList.cs │ ├── 18-functional-programming │ │ ├── 09 Programacion Funcional.pptx │ │ ├── ProgramOrdenarConFuncionales.cs │ │ └── ProgramOrdenarEmails.cs │ └── old │ │ ├── 09-backtrack │ │ ├── backtrack.sln │ │ ├── backtrack │ │ │ ├── Square.cs │ │ │ └── backtrack.csproj │ │ ├── makefile │ │ └── tester │ │ │ ├── Program.cs │ │ │ └── tester.csproj │ │ ├── 10-search │ │ ├── npuzzle.logic │ │ │ ├── NPuzzle.cs │ │ │ ├── NPuzzleSolver.cs │ │ │ └── npuzzle.logic.csproj │ │ ├── npuzzle.sln │ │ └── npuzzle │ │ │ ├── Program.cs │ │ │ └── npuzzle.csproj │ │ ├── 11-minimax │ │ ├── makefile │ │ ├── tictactoe.logic │ │ │ ├── Minimax.cs │ │ │ ├── TicTacToe.cs │ │ │ └── tictactoe.logic.csproj │ │ ├── tictactoe.sln │ │ └── tictactoe │ │ │ ├── Program.cs │ │ │ └── tictactoe.csproj │ │ ├── 12-tsp │ │ ├── tester │ │ │ ├── Program.cs │ │ │ └── tester.csproj │ │ ├── tsp.sln │ │ └── tsp │ │ │ ├── TSP.cs │ │ │ └── tsp.csproj │ │ ├── 13-inheritance │ │ ├── accounting │ │ │ ├── Cart.cs │ │ │ ├── Product.cs │ │ │ └── accounting.csproj │ │ ├── app │ │ │ ├── Program.cs │ │ │ └── app.csproj │ │ ├── inheritance.sln │ │ └── makefile │ │ ├── 14-evaluator │ │ ├── evaluator.sln │ │ ├── evaluator │ │ │ ├── Expression.cs │ │ │ └── evaluator.csproj │ │ ├── makefile │ │ └── tester │ │ │ ├── Program.cs │ │ │ └── tester.csproj │ │ ├── 15-interfaces │ │ ├── interfaces.sln │ │ ├── makefile │ │ ├── sorting │ │ │ ├── Collections.cs │ │ │ ├── Interfaces.cs │ │ │ ├── Sorters.cs │ │ │ └── sorting.csproj │ │ └── tester │ │ │ ├── Program.cs │ │ │ └── tester.csproj │ │ ├── 16-generics │ │ ├── generics.sln │ │ ├── makefile │ │ ├── sorting │ │ │ ├── Collections.cs │ │ │ ├── Interfaces.cs │ │ │ ├── Sorters.cs │ │ │ └── sorting.csproj │ │ └── tester │ │ │ ├── Program.cs │ │ │ └── tester.csproj │ │ ├── 17-delegates │ │ ├── delegates.sln │ │ ├── funclib │ │ │ ├── FuncTools.cs │ │ │ └── funclib.csproj │ │ └── tester │ │ │ ├── Program.cs │ │ │ └── tester.csproj │ │ └── 18-data_structures │ │ ├── data_structures.sln │ │ ├── data_structures │ │ ├── Class1.cs │ │ └── data_structures.csproj │ │ └── tester │ │ ├── Program.cs │ │ └── tester.csproj ├── 2024 │ ├── .gitkeep │ ├── 01-intro-variables-and-methods │ │ ├── code │ │ │ ├── expressions │ │ │ │ ├── Program.cs │ │ │ │ └── expressions.csproj │ │ │ ├── hello-world │ │ │ │ ├── Program.cs │ │ │ │ └── hello-world.csproj │ │ │ ├── methods │ │ │ │ ├── Program.cs │ │ │ │ └── methods.csproj │ │ │ ├── order │ │ │ │ ├── Program.cs │ │ │ │ └── order.csproj │ │ │ └── variables │ │ │ │ ├── Program.cs │ │ │ │ └── variables.csproj │ │ └── lecture-01.md │ ├── 02-conditionals-and-cycles │ │ ├── code │ │ │ ├── askName │ │ │ │ ├── Program.cs │ │ │ │ └── askName.csproj │ │ │ ├── countOdd │ │ │ │ ├── Program.cs │ │ │ │ └── countOdd.csproj │ │ │ ├── sum │ │ │ │ ├── Program.cs │ │ │ │ └── sum.csproj │ │ │ └── ternario │ │ │ │ ├── Program.cs │ │ │ │ └── ternario.csproj │ │ └── lecture-02.md │ ├── 03-arrays-and-for │ │ ├── code │ │ │ ├── Program.cs │ │ │ ├── src.csproj │ │ │ └── words.txt │ │ └── lecture-03.md │ ├── 04-class-and-enum │ │ ├── code │ │ │ ├── App │ │ │ │ ├── App.csproj │ │ │ │ └── Program.cs │ │ │ ├── Sets.sln │ │ │ ├── Sets │ │ │ │ ├── Set.cs │ │ │ │ └── Sets.csproj │ │ │ └── makefile │ │ └── lecture-04.md │ ├── 05-bidimentional-arrays │ │ ├── code │ │ │ ├── Rogue │ │ │ │ ├── Rogue.sln │ │ │ │ ├── RogueGame │ │ │ │ │ ├── Program.cs │ │ │ │ │ └── RogueGame.csproj │ │ │ │ ├── RogueLogic │ │ │ │ │ ├── Game.cs │ │ │ │ │ └── RogueLogic.csproj │ │ │ │ └── makefile │ │ │ └── TicTacToe │ │ │ │ ├── Program.cs │ │ │ │ └── TicTacToe.csproj │ │ └── lecture-05.md │ ├── 06-sorting │ │ ├── code │ │ │ └── sorting-examples │ │ │ │ ├── MatCom.Sorting.Tester │ │ │ │ ├── MatCom.Sorting.Tester.csproj │ │ │ │ └── Program.cs │ │ │ │ ├── MatCom.Sorting │ │ │ │ ├── MatCom.Sorting.csproj │ │ │ │ └── Sort.cs │ │ │ │ ├── Sorting.sln │ │ │ │ └── makefile │ │ └── lecture-06.md │ ├── 07-recursion-intro │ │ ├── code │ │ │ └── recursion │ │ │ │ ├── recursion.sln │ │ │ │ └── src │ │ │ │ ├── Program.cs │ │ │ │ └── src.csproj │ │ └── lecture-07.md │ ├── 08-divide-and-conquer │ │ ├── code │ │ │ └── recursion │ │ │ │ ├── recursion.sln │ │ │ │ └── src │ │ │ │ ├── Program.cs │ │ │ │ └── src.csproj │ │ └── lecture-08.md │ ├── 09-backtrack │ │ ├── code │ │ │ ├── Program.cs │ │ │ └── src.csproj │ │ └── lecture-09.md │ ├── 10-combinatorial │ │ ├── code │ │ │ ├── Program.cs │ │ │ └── src.csproj │ │ └── lecture-10.md │ ├── 11-dinamic-programming │ │ ├── code │ │ │ ├── Program.cs │ │ │ └── src.csproj │ │ └── lecture-11.md │ ├── 12-inheritance │ │ ├── code │ │ │ └── cuentas │ │ │ │ ├── Cuenta.cs │ │ │ │ ├── Program.cs │ │ │ │ ├── Tienda.cs │ │ │ │ └── cuentas.csproj │ │ └── lecture-12.md │ ├── 13-polymorphism │ │ ├── code │ │ │ └── cuentas │ │ │ │ ├── Cuenta.cs │ │ │ │ ├── Program.cs │ │ │ │ ├── Tienda.cs │ │ │ │ └── cuentas.csproj │ │ └── lecture-13.md │ ├── 14-abstract-and-object │ │ ├── code │ │ │ ├── Figures.cs │ │ │ ├── Program.cs │ │ │ └── src.csproj │ │ └── lecture-14.md │ ├── 15-interfaces-and-genericity │ │ ├── code │ │ │ ├── 15_1 BuscarCon==.cs │ │ │ ├── 15_2 BuscarCon Equals.cs │ │ │ ├── 15_3 BuscarCon Genericidad e Interfaces.cs │ │ │ ├── 15_4 Ordenacion.cs │ │ │ └── 15_5 OrdenacionCon Genericidad e Interfaces.cs │ │ └── lecture-15.md │ ├── 16-ienumerable-and-ienumerator │ │ ├── code │ │ │ ├── Program01.cs │ │ │ ├── Program02.cs │ │ │ ├── Program03.cs │ │ │ ├── Program04.cs │ │ │ └── Program05.cs │ │ └── lecture-16.md │ ├── 17-ilist-and-icollection │ │ ├── code │ │ │ ├── ProgramArrayList.cs │ │ │ └── ProgramLinkedList.cs │ │ └── lecture-17.md │ ├── 18-linked-structures │ │ ├── code │ │ │ ├── Examples.cs │ │ │ └── Examples.csproj │ │ └── lecture-18.md │ ├── 19-more-trees │ │ ├── code │ │ │ ├── ArbolBinario.cs │ │ │ ├── Program.cs │ │ │ └── Program.csproj │ │ └── lecture-19.md │ ├── 20-dictionaries │ │ ├── code │ │ │ ├── 01_OperacionesConDiccionarios │ │ │ │ ├── 01_OperacionesConDiccionarios.csproj │ │ │ │ └── ProgramAgenda.cs │ │ │ ├── 02_UsandoIEqualityComparer │ │ │ │ ├── 02_UsandoIEqualityComparer.csproj │ │ │ │ └── ProgramIEqualityComparer.cs │ │ │ ├── 03_FibonnaciConDiccionarios │ │ │ │ ├── 03_FibonnaciConDiccionarios.csproj │ │ │ │ └── ProgramFibMemorizado.cs │ │ │ ├── 04_ImplementacionDeDiccionarioUsandoHashing │ │ │ │ ├── 04_ImplementacionDeDiccionarioUsandoHashing.csproj │ │ │ │ └── ProgramHashTable.cs │ │ │ ├── 11_Diccionarios.sln │ │ │ └── 11_Diccionarios │ │ │ │ ├── 11_Diccionarios.csproj │ │ │ │ └── Program.cs │ │ └── lecture-20.md │ └── 21-functional-programming │ │ ├── code │ │ ├── OrdenarConFuncionales.cs │ │ ├── OrdenarEmails.cs │ │ └── program.csproj │ │ └── lecture-21.md └── 2025 │ ├── 00-hello-world │ ├── 00-hello-world.sln │ ├── hello-world │ │ ├── Program.cs │ │ └── hello-world.csproj │ └── lecture-00.md │ ├── 01-variables-expressions │ ├── 01-variables-expressions.sln │ └── app │ │ ├── Program.cs │ │ └── app.csproj │ ├── 02-conditionals-methods │ ├── 02-conditionals-methods.sln │ ├── Readme.md │ └── tamagotchi │ │ ├── Program.cs │ │ └── tamagotchi.csproj │ └── 03-loops │ ├── guesser │ ├── Program.cs │ └── guesser.csproj │ └── loops.sln ├── cps ├── 2023 │ ├── cp1 - Intro.pdf │ ├── cp2 - Hello Wolrd.pdf │ ├── cp3 - Condicionales.pdf │ ├── cp4- funciones.pdf │ ├── cp5 - Ciclos.pdf │ ├── cp6 - Clases.pdf │ ├── cp7 - Ciclos (for black belts).pdf │ ├── cp8 - Ciclos (may the for be with you).pdf │ └── cp9 - It is all about The Matrix.pdf ├── 2024 │ └── .gitkeep └── 2024-25 │ ├── cp1.pdf │ └── cp1_respuestas.pdf ├── exams ├── 2022 │ ├── extra │ │ ├── college │ │ │ ├── .vscode │ │ │ │ ├── launch.json │ │ │ │ └── tasks.json │ │ │ ├── college.sln │ │ │ ├── college │ │ │ │ ├── Examenes.cs │ │ │ │ └── college.csproj │ │ │ └── tester │ │ │ │ ├── Program.cs │ │ │ │ └── tester.csproj │ │ ├── festival │ │ │ ├── .vscode │ │ │ │ ├── launch.json │ │ │ │ └── tasks.json │ │ │ ├── festival.sln │ │ │ ├── festival │ │ │ │ ├── Festival.cs │ │ │ │ └── festival.csproj │ │ │ └── tester │ │ │ │ ├── Program.cs │ │ │ │ └── tester.csproj │ │ └── inventory │ │ │ ├── .gitignore │ │ │ ├── Readme.md │ │ │ ├── Readme.pdf │ │ │ ├── exam │ │ │ ├── Exam.cs │ │ │ ├── Program.cs │ │ │ └── exam.csproj │ │ │ ├── inventory.sln │ │ │ ├── inventory │ │ │ ├── Inventory.cs │ │ │ └── inventory.csproj │ │ │ ├── makefile │ │ │ ├── results-2022.md │ │ │ └── tester │ │ │ ├── README.md │ │ │ ├── main │ │ │ ├── Program.cs │ │ │ ├── Utils.cs │ │ │ └── main.csproj │ │ │ ├── makefile │ │ │ ├── solutions │ │ │ ├── Tony_Cadahia_Poveda_C312.cs │ │ │ └── base │ │ │ │ └── Solution.cs │ │ │ ├── tester.sln │ │ │ └── tester │ │ │ ├── Inventory.cs │ │ │ ├── Solution.cs │ │ │ ├── UnitTest.cs │ │ │ ├── Utils.cs │ │ │ └── tester.csproj │ ├── final │ │ ├── cctv │ │ │ ├── .vscode │ │ │ │ ├── launch.json │ │ │ │ └── tasks.json │ │ │ ├── cctv.sln │ │ │ ├── cctv │ │ │ │ ├── CCTV.cs │ │ │ │ └── cctv.csproj │ │ │ └── tester │ │ │ │ ├── Program.cs │ │ │ │ └── tester.csproj │ │ ├── filesystem │ │ │ ├── .vscode │ │ │ │ ├── launch.json │ │ │ │ └── tasks.json │ │ │ ├── Readme.md │ │ │ ├── Readme.pdf │ │ │ ├── exam │ │ │ │ ├── Exam.cs │ │ │ │ ├── Program.cs │ │ │ │ └── exam.csproj │ │ │ ├── filesystem.sln │ │ │ ├── filesystem │ │ │ │ ├── FileSystem.cs │ │ │ │ └── filesystem.csproj │ │ │ ├── makefile │ │ │ ├── results.md │ │ │ └── tester │ │ │ │ ├── README.md │ │ │ │ ├── base │ │ │ │ ├── FileSystem.cs │ │ │ │ ├── Solution.cs │ │ │ │ └── Wrapper.cs │ │ │ │ ├── code │ │ │ │ ├── FileSystem.cs │ │ │ │ ├── Solution.cs │ │ │ │ ├── Wrapper.cs │ │ │ │ └── code.csproj │ │ │ │ ├── main │ │ │ │ ├── Program.cs │ │ │ │ └── main.csproj │ │ │ │ ├── makefile │ │ │ │ ├── matcom-tester.sln │ │ │ │ ├── solutions │ │ │ │ └── Leandro_Rodriguez_Llosa_C311.cs │ │ │ │ └── tester │ │ │ │ ├── BaseTester.cs │ │ │ │ ├── Program.cs │ │ │ │ ├── Test1.cs │ │ │ │ ├── Test2.cs │ │ │ │ ├── Test3.cs │ │ │ │ ├── Test4.cs │ │ │ │ ├── Test5.cs │ │ │ │ ├── Test6.cs │ │ │ │ ├── Test7.cs │ │ │ │ ├── TestClasses.cs │ │ │ │ ├── TestUtils.cs │ │ │ │ ├── Tester.cs │ │ │ │ └── tester.csproj │ │ └── frequencies │ │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ │ ├── frequencies.sln │ │ │ ├── frequencies │ │ │ ├── Frecuencias.cs │ │ │ └── frequencies.csproj │ │ │ └── tester │ │ │ ├── Program.cs │ │ │ └── tester.csproj │ ├── recursion │ │ ├── battery-A │ │ │ └── Readme-A.pdf │ │ └── battery-B │ │ │ ├── Readme-B.pdf │ │ │ ├── Readme.md │ │ │ └── solve.py │ ├── tcp1 │ │ ├── tourist │ │ │ ├── Turismo_Ecologico.docx │ │ │ ├── Turismo_Ecologico.pdf │ │ │ ├── makefile │ │ │ ├── tester │ │ │ │ ├── Program.cs │ │ │ │ └── tester.csproj │ │ │ ├── tourist.sln │ │ │ └── tourist │ │ │ │ ├── Senderismo.cs │ │ │ │ └── tourist.csproj │ │ └── wifi │ │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ │ ├── Intensidad_de_la_Senal.docx │ │ │ ├── Intensidad_de_la_Senal.pdf │ │ │ ├── makefile │ │ │ ├── tester │ │ │ ├── Program.cs │ │ │ └── tester.csproj │ │ │ ├── wifi.sln │ │ │ └── wifi │ │ │ ├── Wifi.cs │ │ │ └── wifi.csproj │ ├── tcp2 │ │ ├── TuEnvio │ │ │ ├── .vscode │ │ │ │ ├── launch.json │ │ │ │ └── tasks.json │ │ │ ├── Tester │ │ │ │ ├── Program.cs │ │ │ │ └── Tester.csproj │ │ │ ├── TuEnvio.sln │ │ │ ├── TuEnvio │ │ │ │ ├── TuEnvio.cs │ │ │ │ └── TuEnvio.csproj │ │ │ ├── tu_envio.docx │ │ │ └── tu_envio.pdf │ │ └── WebooSoft │ │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ │ ├── ProjectManager │ │ │ ├── Manager.cs │ │ │ └── ProjectManager.csproj │ │ │ ├── Tester │ │ │ ├── Program.cs │ │ │ └── Tester.csproj │ │ │ ├── WebooSoft.sln │ │ │ ├── weboosoft.docx │ │ │ └── weboosoft.pdf │ ├── tcp3 │ │ ├── Readme.md │ │ ├── TuEnvio │ │ │ ├── Interfaces.cs │ │ │ ├── ShoppingCart.cs │ │ │ └── TuEnvio.csproj │ │ ├── TuEnvio2.pdf │ │ ├── makefile │ │ └── tcp3.sln │ └── tcp4 │ │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ │ ├── Readme.md │ │ ├── Readme.pdf │ │ ├── exam │ │ ├── Exam.cs │ │ ├── Program.cs │ │ └── exam.csproj │ │ ├── makefile │ │ ├── tcp4.sln │ │ └── trees │ │ ├── Trees.cs │ │ └── trees.csproj └── 2023 │ └── final │ ├── alimentando_leones │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── exam │ │ ├── Program.cs │ │ ├── Utils.cs │ │ └── exam.csproj │ └── final.pdf │ ├── alimentando_más_leones │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Alimentando más leones.pdf │ └── exam │ │ ├── Program.cs │ │ ├── Solution.cs │ │ ├── Utils.cs │ │ └── exam.csproj │ └── contrabando_pirata │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── exam │ ├── Program.cs │ ├── Utils.cs │ └── exam.csproj │ └── final.pdf ├── exercises ├── 01_types_expressions.md ├── 02_conditionals_cycles.md ├── 03_cycles_arrays.md ├── 04_clases.md ├── 05_recursion.md ├── 2-classes.md ├── assets │ └── area_sombreada.jpg ├── exercises.pdf ├── makefile └── poo.pdf ├── methodology ├── 2024.md ├── backtrack.md └── backtrack.pdf ├── projects ├── battle-cards │ ├── Battle Cards.pdf │ └── Readme.md └── hulk │ └── Readme.md └── results └── 2023 └── 1er TC ├── resultados_juan_I.md └── resultados_juan_II.md /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/proyecto-i---curso-24-25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/.github/ISSUE_TEMPLATE/proyecto-i---curso-24-25.md -------------------------------------------------------------------------------- /.github/workflows/build-exercises.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/.github/workflows/build-exercises.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/Readme.md -------------------------------------------------------------------------------- /animations/.gitignore: -------------------------------------------------------------------------------- 1 | media -------------------------------------------------------------------------------- /animations/manim.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/animations/manim.cfg -------------------------------------------------------------------------------- /animations/search_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/animations/search_sort.py -------------------------------------------------------------------------------- /conferences/2023/01-intro/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/01-intro/Readme.md -------------------------------------------------------------------------------- /conferences/2023/01-intro/expressions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/01-intro/expressions/Program.cs -------------------------------------------------------------------------------- /conferences/2023/01-intro/expressions/expressions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/01-intro/expressions/expressions.csproj -------------------------------------------------------------------------------- /conferences/2023/01-intro/hello-world-oldskool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/01-intro/hello-world-oldskool/Program.cs -------------------------------------------------------------------------------- /conferences/2023/01-intro/hello-world-oldskool/hello-world-oldskool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/01-intro/hello-world-oldskool/hello-world-oldskool.csproj -------------------------------------------------------------------------------- /conferences/2023/01-intro/hello-world/Program.cs: -------------------------------------------------------------------------------- 1 | Console.WriteLine("Hello World!"); 2 | -------------------------------------------------------------------------------- /conferences/2023/01-intro/hello-world/hello-world.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/01-intro/hello-world/hello-world.csproj -------------------------------------------------------------------------------- /conferences/2023/01-intro/order/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/01-intro/order/Program.cs -------------------------------------------------------------------------------- /conferences/2023/01-intro/order/order.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/01-intro/order/order.csproj -------------------------------------------------------------------------------- /conferences/2023/01-intro/variables/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/01-intro/variables/Program.cs -------------------------------------------------------------------------------- /conferences/2023/01-intro/variables/variables.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/01-intro/variables/variables.csproj -------------------------------------------------------------------------------- /conferences/2023/02-conditionals/eliza/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/02-conditionals/eliza/Program.cs -------------------------------------------------------------------------------- /conferences/2023/02-conditionals/eliza/eliza.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/02-conditionals/eliza/eliza.csproj -------------------------------------------------------------------------------- /conferences/2023/02-conditionals/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/02-conditionals/script.md -------------------------------------------------------------------------------- /conferences/2023/03-functions/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/03-functions/Readme.md -------------------------------------------------------------------------------- /conferences/2023/03-functions/src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/03-functions/src/Program.cs -------------------------------------------------------------------------------- /conferences/2023/03-functions/src/src.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/03-functions/src/src.csproj -------------------------------------------------------------------------------- /conferences/2023/04-arrays/src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/04-arrays/src/Program.cs -------------------------------------------------------------------------------- /conferences/2023/04-arrays/src/src.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/04-arrays/src/src.csproj -------------------------------------------------------------------------------- /conferences/2023/04-arrays/src/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/04-arrays/src/words.txt -------------------------------------------------------------------------------- /conferences/2023/05-classes/App/App.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/05-classes/App/App.csproj -------------------------------------------------------------------------------- /conferences/2023/05-classes/App/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/05-classes/App/Program.cs -------------------------------------------------------------------------------- /conferences/2023/05-classes/Sets.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/05-classes/Sets.sln -------------------------------------------------------------------------------- /conferences/2023/05-classes/Sets/Set.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/05-classes/Sets/Set.cs -------------------------------------------------------------------------------- /conferences/2023/05-classes/Sets/Sets.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/05-classes/Sets/Sets.csproj -------------------------------------------------------------------------------- /conferences/2023/05-classes/makefile: -------------------------------------------------------------------------------- 1 | test: 2 | dotnet run --project App 3 | -------------------------------------------------------------------------------- /conferences/2023/06-sorting/MatCom.Sorting.Tester/MatCom.Sorting.Tester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/06-sorting/MatCom.Sorting.Tester/MatCom.Sorting.Tester.csproj -------------------------------------------------------------------------------- /conferences/2023/06-sorting/MatCom.Sorting.Tester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/06-sorting/MatCom.Sorting.Tester/Program.cs -------------------------------------------------------------------------------- /conferences/2023/06-sorting/MatCom.Sorting/MatCom.Sorting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/06-sorting/MatCom.Sorting/MatCom.Sorting.csproj -------------------------------------------------------------------------------- /conferences/2023/06-sorting/MatCom.Sorting/Sort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/06-sorting/MatCom.Sorting/Sort.cs -------------------------------------------------------------------------------- /conferences/2023/06-sorting/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/06-sorting/Readme.md -------------------------------------------------------------------------------- /conferences/2023/06-sorting/Sorting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/06-sorting/Sorting.sln -------------------------------------------------------------------------------- /conferences/2023/06-sorting/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/06-sorting/makefile -------------------------------------------------------------------------------- /conferences/2023/07-algebra/Algebra.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/07-algebra/Algebra.sln -------------------------------------------------------------------------------- /conferences/2023/07-algebra/Algetool/Algetool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/07-algebra/Algetool/Algetool.csproj -------------------------------------------------------------------------------- /conferences/2023/07-algebra/Algetool/Matrix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/07-algebra/Algetool/Matrix.cs -------------------------------------------------------------------------------- /conferences/2023/07-algebra/Algetool/Vector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/07-algebra/Algetool/Vector.cs -------------------------------------------------------------------------------- /conferences/2023/07-algebra/App/App.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/07-algebra/App/App.csproj -------------------------------------------------------------------------------- /conferences/2023/07-algebra/App/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/07-algebra/App/Program.cs -------------------------------------------------------------------------------- /conferences/2023/08-matrices/Rogue.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/08-matrices/Rogue.sln -------------------------------------------------------------------------------- /conferences/2023/08-matrices/RogueGame/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/08-matrices/RogueGame/Program.cs -------------------------------------------------------------------------------- /conferences/2023/08-matrices/RogueGame/RogueGame.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/08-matrices/RogueGame/RogueGame.csproj -------------------------------------------------------------------------------- /conferences/2023/08-matrices/RogueLogic/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/08-matrices/RogueLogic/Game.cs -------------------------------------------------------------------------------- /conferences/2023/08-matrices/RogueLogic/RogueLogic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/08-matrices/RogueLogic/RogueLogic.csproj -------------------------------------------------------------------------------- /conferences/2023/08-matrices/makefile: -------------------------------------------------------------------------------- 1 | run: 2 | dotnet run --project RogueGame -------------------------------------------------------------------------------- /conferences/2023/09-recursion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/09-recursion/README.md -------------------------------------------------------------------------------- /conferences/2023/09-recursion/makefile: -------------------------------------------------------------------------------- 1 | run: 2 | dotnet run --project recursion/src -------------------------------------------------------------------------------- /conferences/2023/09-recursion/recursion/recursion.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/09-recursion/recursion/recursion.sln -------------------------------------------------------------------------------- /conferences/2023/09-recursion/recursion/src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/09-recursion/recursion/src/Program.cs -------------------------------------------------------------------------------- /conferences/2023/09-recursion/recursion/src/src.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/09-recursion/recursion/src/src.csproj -------------------------------------------------------------------------------- /conferences/2023/10-more-recursion/01 Review Recursividad.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/10-more-recursion/01 Review Recursividad.pptx -------------------------------------------------------------------------------- /conferences/2023/10-more-recursion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/10-more-recursion/README.md -------------------------------------------------------------------------------- /conferences/2023/11-divide-and-conquer/02 Recursuvidad. Divide y Venceras.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/11-divide-and-conquer/02 Recursuvidad. Divide y Venceras.pptx -------------------------------------------------------------------------------- /conferences/2023/11-divide-and-conquer/02_Divide_y_Venceras/01_ReviewRecursion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/11-divide-and-conquer/02_Divide_y_Venceras/01_ReviewRecursion.cs -------------------------------------------------------------------------------- /conferences/2023/11-divide-and-conquer/02_Divide_y_Venceras/02_Divide_y_Venceras/02_Busqueda_y_Ordenacion.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/11-divide-and-conquer/02_Divide_y_Venceras/02_Divide_y_Venceras/02_Busqueda_y_Ordenacion.csproj -------------------------------------------------------------------------------- /conferences/2023/11-divide-and-conquer/02_Divide_y_Venceras/02_Divide_y_Venceras/02_Divide_y_Venceras.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/11-divide-and-conquer/02_Divide_y_Venceras/02_Divide_y_Venceras/02_Divide_y_Venceras.sln -------------------------------------------------------------------------------- /conferences/2023/11-divide-and-conquer/02_Divide_y_Venceras/02_Divide_y_Venceras/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/11-divide-and-conquer/02_Divide_y_Venceras/02_Divide_y_Venceras/Program.cs -------------------------------------------------------------------------------- /conferences/2023/11-divide-and-conquer/02_Divide_y_Venceras/02_Divide_y_Venceras_BusquedaBinaria_Ordenacion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/11-divide-and-conquer/02_Divide_y_Venceras/02_Divide_y_Venceras_BusquedaBinaria_Ordenacion.cs -------------------------------------------------------------------------------- /conferences/2023/11-divide-and-conquer/02_Divide_y_Venceras/02_SubsecuenciaSumaMaxima.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/11-divide-and-conquer/02_Divide_y_Venceras/02_SubsecuenciaSumaMaxima.cs -------------------------------------------------------------------------------- /conferences/2023/11-divide-and-conquer/02_SubsecuenciaSumaMaxima/02_SubsecuenciaSumaMaxima.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/11-divide-and-conquer/02_SubsecuenciaSumaMaxima/02_SubsecuenciaSumaMaxima.csproj -------------------------------------------------------------------------------- /conferences/2023/11-divide-and-conquer/02_SubsecuenciaSumaMaxima/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/11-divide-and-conquer/02_SubsecuenciaSumaMaxima/Program.cs -------------------------------------------------------------------------------- /conferences/2023/12-backtrack/03 SubSecSumaMax. Backtracking.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/12-backtrack/03 SubSecSumaMax. Backtracking.pptx -------------------------------------------------------------------------------- /conferences/2023/12-backtrack/03_Backtracking/03_Backtracking.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/12-backtrack/03_Backtracking/03_Backtracking.sln -------------------------------------------------------------------------------- /conferences/2023/12-backtrack/03_Backtracking/03_UbicarReinas.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/12-backtrack/03_Backtracking/03_UbicarReinas.csproj -------------------------------------------------------------------------------- /conferences/2023/12-backtrack/03_Backtracking/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/12-backtrack/03_Backtracking/Program.cs -------------------------------------------------------------------------------- /conferences/2023/12-backtrack/03_Laberinto/03_Laberinto.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/12-backtrack/03_Laberinto/03_Laberinto.csproj -------------------------------------------------------------------------------- /conferences/2023/12-backtrack/03_Laberinto/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/12-backtrack/03_Laberinto/Program.cs -------------------------------------------------------------------------------- /conferences/2023/13-combinatorial/04 Combinatoria. El problema del viajante.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/13-combinatorial/04 Combinatoria. El problema del viajante.pptx -------------------------------------------------------------------------------- /conferences/2023/13-combinatorial/04_Combinatoria.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/13-combinatorial/04_Combinatoria.cs -------------------------------------------------------------------------------- /conferences/2023/14-inheritance/05_OOP_Review_Diseccionando_Stopwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/14-inheritance/05_OOP_Review_Diseccionando_Stopwatch.cs -------------------------------------------------------------------------------- /conferences/2023/14-inheritance/05_OOP_Review_Jerarquia_de_Figuras.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/14-inheritance/05_OOP_Review_Jerarquia_de_Figuras.cs -------------------------------------------------------------------------------- /conferences/2023/14-inheritance/05_OOP_Review_Ordenando_Array_de_Figuras.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/14-inheritance/05_OOP_Review_Ordenando_Array_de_Figuras.cs -------------------------------------------------------------------------------- /conferences/2023/15-genericity-and-interfaces/06 Genericidad_Interfaces 1.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/15-genericity-and-interfaces/06 Genericidad_Interfaces 1.pptx -------------------------------------------------------------------------------- /conferences/2023/15-genericity-and-interfaces/06_1 BuscarCon==.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/15-genericity-and-interfaces/06_1 BuscarCon==.cs -------------------------------------------------------------------------------- /conferences/2023/15-genericity-and-interfaces/06_2 BuscarCon Equals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/15-genericity-and-interfaces/06_2 BuscarCon Equals.cs -------------------------------------------------------------------------------- /conferences/2023/15-genericity-and-interfaces/06_3 BuscarCon Genericidad e Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/15-genericity-and-interfaces/06_3 BuscarCon Genericidad e Interfaces.cs -------------------------------------------------------------------------------- /conferences/2023/15-genericity-and-interfaces/06_4 Ordenacion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/15-genericity-and-interfaces/06_4 Ordenacion.cs -------------------------------------------------------------------------------- /conferences/2023/15-genericity-and-interfaces/06_5 OrdenacionCon Genericidad e Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/15-genericity-and-interfaces/06_5 OrdenacionCon Genericidad e Interfaces.cs -------------------------------------------------------------------------------- /conferences/2023/16-ienumerable-and-ienumerator/Program01.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/16-ienumerable-and-ienumerator/Program01.cs -------------------------------------------------------------------------------- /conferences/2023/16-ienumerable-and-ienumerator/Program02.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/16-ienumerable-and-ienumerator/Program02.cs -------------------------------------------------------------------------------- /conferences/2023/16-ienumerable-and-ienumerator/Program03.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/16-ienumerable-and-ienumerator/Program03.cs -------------------------------------------------------------------------------- /conferences/2023/16-ienumerable-and-ienumerator/Program04.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/16-ienumerable-and-ienumerator/Program04.cs -------------------------------------------------------------------------------- /conferences/2023/16-ienumerable-and-ienumerator/Program05.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/16-ienumerable-and-ienumerator/Program05.cs -------------------------------------------------------------------------------- /conferences/2023/17-ilist-and-icollection/08 ICollection, IList, List.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/17-ilist-and-icollection/08 ICollection, IList, List.pptx -------------------------------------------------------------------------------- /conferences/2023/17-ilist-and-icollection/ProgramArrayList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/17-ilist-and-icollection/ProgramArrayList.cs -------------------------------------------------------------------------------- /conferences/2023/17-ilist-and-icollection/ProgramLinkedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/17-ilist-and-icollection/ProgramLinkedList.cs -------------------------------------------------------------------------------- /conferences/2023/18-functional-programming/09 Programacion Funcional.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/18-functional-programming/09 Programacion Funcional.pptx -------------------------------------------------------------------------------- /conferences/2023/18-functional-programming/ProgramOrdenarConFuncionales.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/18-functional-programming/ProgramOrdenarConFuncionales.cs -------------------------------------------------------------------------------- /conferences/2023/18-functional-programming/ProgramOrdenarEmails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/18-functional-programming/ProgramOrdenarEmails.cs -------------------------------------------------------------------------------- /conferences/2023/old/09-backtrack/backtrack.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/09-backtrack/backtrack.sln -------------------------------------------------------------------------------- /conferences/2023/old/09-backtrack/backtrack/Square.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/09-backtrack/backtrack/Square.cs -------------------------------------------------------------------------------- /conferences/2023/old/09-backtrack/backtrack/backtrack.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/09-backtrack/backtrack/backtrack.csproj -------------------------------------------------------------------------------- /conferences/2023/old/09-backtrack/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/09-backtrack/makefile -------------------------------------------------------------------------------- /conferences/2023/old/09-backtrack/tester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/09-backtrack/tester/Program.cs -------------------------------------------------------------------------------- /conferences/2023/old/09-backtrack/tester/tester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/09-backtrack/tester/tester.csproj -------------------------------------------------------------------------------- /conferences/2023/old/10-search/npuzzle.logic/NPuzzle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/10-search/npuzzle.logic/NPuzzle.cs -------------------------------------------------------------------------------- /conferences/2023/old/10-search/npuzzle.logic/NPuzzleSolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/10-search/npuzzle.logic/NPuzzleSolver.cs -------------------------------------------------------------------------------- /conferences/2023/old/10-search/npuzzle.logic/npuzzle.logic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/10-search/npuzzle.logic/npuzzle.logic.csproj -------------------------------------------------------------------------------- /conferences/2023/old/10-search/npuzzle.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/10-search/npuzzle.sln -------------------------------------------------------------------------------- /conferences/2023/old/10-search/npuzzle/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/10-search/npuzzle/Program.cs -------------------------------------------------------------------------------- /conferences/2023/old/10-search/npuzzle/npuzzle.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/10-search/npuzzle/npuzzle.csproj -------------------------------------------------------------------------------- /conferences/2023/old/11-minimax/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/11-minimax/makefile -------------------------------------------------------------------------------- /conferences/2023/old/11-minimax/tictactoe.logic/Minimax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/11-minimax/tictactoe.logic/Minimax.cs -------------------------------------------------------------------------------- /conferences/2023/old/11-minimax/tictactoe.logic/TicTacToe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/11-minimax/tictactoe.logic/TicTacToe.cs -------------------------------------------------------------------------------- /conferences/2023/old/11-minimax/tictactoe.logic/tictactoe.logic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/11-minimax/tictactoe.logic/tictactoe.logic.csproj -------------------------------------------------------------------------------- /conferences/2023/old/11-minimax/tictactoe.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/11-minimax/tictactoe.sln -------------------------------------------------------------------------------- /conferences/2023/old/11-minimax/tictactoe/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/11-minimax/tictactoe/Program.cs -------------------------------------------------------------------------------- /conferences/2023/old/11-minimax/tictactoe/tictactoe.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/11-minimax/tictactoe/tictactoe.csproj -------------------------------------------------------------------------------- /conferences/2023/old/12-tsp/tester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/12-tsp/tester/Program.cs -------------------------------------------------------------------------------- /conferences/2023/old/12-tsp/tester/tester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/12-tsp/tester/tester.csproj -------------------------------------------------------------------------------- /conferences/2023/old/12-tsp/tsp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/12-tsp/tsp.sln -------------------------------------------------------------------------------- /conferences/2023/old/12-tsp/tsp/TSP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/12-tsp/tsp/TSP.cs -------------------------------------------------------------------------------- /conferences/2023/old/12-tsp/tsp/tsp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/12-tsp/tsp/tsp.csproj -------------------------------------------------------------------------------- /conferences/2023/old/13-inheritance/accounting/Cart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/13-inheritance/accounting/Cart.cs -------------------------------------------------------------------------------- /conferences/2023/old/13-inheritance/accounting/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/13-inheritance/accounting/Product.cs -------------------------------------------------------------------------------- /conferences/2023/old/13-inheritance/accounting/accounting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/13-inheritance/accounting/accounting.csproj -------------------------------------------------------------------------------- /conferences/2023/old/13-inheritance/app/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/13-inheritance/app/Program.cs -------------------------------------------------------------------------------- /conferences/2023/old/13-inheritance/app/app.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/13-inheritance/app/app.csproj -------------------------------------------------------------------------------- /conferences/2023/old/13-inheritance/inheritance.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/13-inheritance/inheritance.sln -------------------------------------------------------------------------------- /conferences/2023/old/13-inheritance/makefile: -------------------------------------------------------------------------------- 1 | run: 2 | dotnet run --project app 3 | -------------------------------------------------------------------------------- /conferences/2023/old/14-evaluator/evaluator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/14-evaluator/evaluator.sln -------------------------------------------------------------------------------- /conferences/2023/old/14-evaluator/evaluator/Expression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/14-evaluator/evaluator/Expression.cs -------------------------------------------------------------------------------- /conferences/2023/old/14-evaluator/evaluator/evaluator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/14-evaluator/evaluator/evaluator.csproj -------------------------------------------------------------------------------- /conferences/2023/old/14-evaluator/makefile: -------------------------------------------------------------------------------- 1 | run: 2 | dotnet run --project tester -------------------------------------------------------------------------------- /conferences/2023/old/14-evaluator/tester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/14-evaluator/tester/Program.cs -------------------------------------------------------------------------------- /conferences/2023/old/14-evaluator/tester/tester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/14-evaluator/tester/tester.csproj -------------------------------------------------------------------------------- /conferences/2023/old/15-interfaces/interfaces.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/15-interfaces/interfaces.sln -------------------------------------------------------------------------------- /conferences/2023/old/15-interfaces/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/15-interfaces/makefile -------------------------------------------------------------------------------- /conferences/2023/old/15-interfaces/sorting/Collections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/15-interfaces/sorting/Collections.cs -------------------------------------------------------------------------------- /conferences/2023/old/15-interfaces/sorting/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/15-interfaces/sorting/Interfaces.cs -------------------------------------------------------------------------------- /conferences/2023/old/15-interfaces/sorting/Sorters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/15-interfaces/sorting/Sorters.cs -------------------------------------------------------------------------------- /conferences/2023/old/15-interfaces/sorting/sorting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/15-interfaces/sorting/sorting.csproj -------------------------------------------------------------------------------- /conferences/2023/old/15-interfaces/tester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/15-interfaces/tester/Program.cs -------------------------------------------------------------------------------- /conferences/2023/old/15-interfaces/tester/tester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/15-interfaces/tester/tester.csproj -------------------------------------------------------------------------------- /conferences/2023/old/16-generics/generics.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/16-generics/generics.sln -------------------------------------------------------------------------------- /conferences/2023/old/16-generics/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/16-generics/makefile -------------------------------------------------------------------------------- /conferences/2023/old/16-generics/sorting/Collections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/16-generics/sorting/Collections.cs -------------------------------------------------------------------------------- /conferences/2023/old/16-generics/sorting/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/16-generics/sorting/Interfaces.cs -------------------------------------------------------------------------------- /conferences/2023/old/16-generics/sorting/Sorters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/16-generics/sorting/Sorters.cs -------------------------------------------------------------------------------- /conferences/2023/old/16-generics/sorting/sorting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/16-generics/sorting/sorting.csproj -------------------------------------------------------------------------------- /conferences/2023/old/16-generics/tester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/16-generics/tester/Program.cs -------------------------------------------------------------------------------- /conferences/2023/old/16-generics/tester/tester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/16-generics/tester/tester.csproj -------------------------------------------------------------------------------- /conferences/2023/old/17-delegates/delegates.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/17-delegates/delegates.sln -------------------------------------------------------------------------------- /conferences/2023/old/17-delegates/funclib/FuncTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/17-delegates/funclib/FuncTools.cs -------------------------------------------------------------------------------- /conferences/2023/old/17-delegates/funclib/funclib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/17-delegates/funclib/funclib.csproj -------------------------------------------------------------------------------- /conferences/2023/old/17-delegates/tester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/17-delegates/tester/Program.cs -------------------------------------------------------------------------------- /conferences/2023/old/17-delegates/tester/tester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/17-delegates/tester/tester.csproj -------------------------------------------------------------------------------- /conferences/2023/old/18-data_structures/data_structures.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/18-data_structures/data_structures.sln -------------------------------------------------------------------------------- /conferences/2023/old/18-data_structures/data_structures/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/18-data_structures/data_structures/Class1.cs -------------------------------------------------------------------------------- /conferences/2023/old/18-data_structures/data_structures/data_structures.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/18-data_structures/data_structures/data_structures.csproj -------------------------------------------------------------------------------- /conferences/2023/old/18-data_structures/tester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/18-data_structures/tester/Program.cs -------------------------------------------------------------------------------- /conferences/2023/old/18-data_structures/tester/tester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2023/old/18-data_structures/tester/tester.csproj -------------------------------------------------------------------------------- /conferences/2024/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conferences/2024/01-intro-variables-and-methods/code/expressions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/01-intro-variables-and-methods/code/expressions/Program.cs -------------------------------------------------------------------------------- /conferences/2024/01-intro-variables-and-methods/code/expressions/expressions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/01-intro-variables-and-methods/code/expressions/expressions.csproj -------------------------------------------------------------------------------- /conferences/2024/01-intro-variables-and-methods/code/hello-world/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/01-intro-variables-and-methods/code/hello-world/Program.cs -------------------------------------------------------------------------------- /conferences/2024/01-intro-variables-and-methods/code/hello-world/hello-world.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/01-intro-variables-and-methods/code/hello-world/hello-world.csproj -------------------------------------------------------------------------------- /conferences/2024/01-intro-variables-and-methods/code/methods/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/01-intro-variables-and-methods/code/methods/Program.cs -------------------------------------------------------------------------------- /conferences/2024/01-intro-variables-and-methods/code/methods/methods.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/01-intro-variables-and-methods/code/methods/methods.csproj -------------------------------------------------------------------------------- /conferences/2024/01-intro-variables-and-methods/code/order/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/01-intro-variables-and-methods/code/order/Program.cs -------------------------------------------------------------------------------- /conferences/2024/01-intro-variables-and-methods/code/order/order.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/01-intro-variables-and-methods/code/order/order.csproj -------------------------------------------------------------------------------- /conferences/2024/01-intro-variables-and-methods/code/variables/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/01-intro-variables-and-methods/code/variables/Program.cs -------------------------------------------------------------------------------- /conferences/2024/01-intro-variables-and-methods/code/variables/variables.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/01-intro-variables-and-methods/code/variables/variables.csproj -------------------------------------------------------------------------------- /conferences/2024/01-intro-variables-and-methods/lecture-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/01-intro-variables-and-methods/lecture-01.md -------------------------------------------------------------------------------- /conferences/2024/02-conditionals-and-cycles/code/askName/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/02-conditionals-and-cycles/code/askName/Program.cs -------------------------------------------------------------------------------- /conferences/2024/02-conditionals-and-cycles/code/askName/askName.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/02-conditionals-and-cycles/code/askName/askName.csproj -------------------------------------------------------------------------------- /conferences/2024/02-conditionals-and-cycles/code/countOdd/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/02-conditionals-and-cycles/code/countOdd/Program.cs -------------------------------------------------------------------------------- /conferences/2024/02-conditionals-and-cycles/code/countOdd/countOdd.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/02-conditionals-and-cycles/code/countOdd/countOdd.csproj -------------------------------------------------------------------------------- /conferences/2024/02-conditionals-and-cycles/code/sum/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/02-conditionals-and-cycles/code/sum/Program.cs -------------------------------------------------------------------------------- /conferences/2024/02-conditionals-and-cycles/code/sum/sum.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/02-conditionals-and-cycles/code/sum/sum.csproj -------------------------------------------------------------------------------- /conferences/2024/02-conditionals-and-cycles/code/ternario/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/02-conditionals-and-cycles/code/ternario/Program.cs -------------------------------------------------------------------------------- /conferences/2024/02-conditionals-and-cycles/code/ternario/ternario.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/02-conditionals-and-cycles/code/ternario/ternario.csproj -------------------------------------------------------------------------------- /conferences/2024/02-conditionals-and-cycles/lecture-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/02-conditionals-and-cycles/lecture-02.md -------------------------------------------------------------------------------- /conferences/2024/03-arrays-and-for/code/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/03-arrays-and-for/code/Program.cs -------------------------------------------------------------------------------- /conferences/2024/03-arrays-and-for/code/src.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/03-arrays-and-for/code/src.csproj -------------------------------------------------------------------------------- /conferences/2024/03-arrays-and-for/code/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/03-arrays-and-for/code/words.txt -------------------------------------------------------------------------------- /conferences/2024/03-arrays-and-for/lecture-03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/03-arrays-and-for/lecture-03.md -------------------------------------------------------------------------------- /conferences/2024/04-class-and-enum/code/App/App.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/04-class-and-enum/code/App/App.csproj -------------------------------------------------------------------------------- /conferences/2024/04-class-and-enum/code/App/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/04-class-and-enum/code/App/Program.cs -------------------------------------------------------------------------------- /conferences/2024/04-class-and-enum/code/Sets.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/04-class-and-enum/code/Sets.sln -------------------------------------------------------------------------------- /conferences/2024/04-class-and-enum/code/Sets/Set.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/04-class-and-enum/code/Sets/Set.cs -------------------------------------------------------------------------------- /conferences/2024/04-class-and-enum/code/Sets/Sets.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/04-class-and-enum/code/Sets/Sets.csproj -------------------------------------------------------------------------------- /conferences/2024/04-class-and-enum/code/makefile: -------------------------------------------------------------------------------- 1 | test: 2 | dotnet run --project App 3 | -------------------------------------------------------------------------------- /conferences/2024/04-class-and-enum/lecture-04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/04-class-and-enum/lecture-04.md -------------------------------------------------------------------------------- /conferences/2024/05-bidimentional-arrays/code/Rogue/Rogue.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/05-bidimentional-arrays/code/Rogue/Rogue.sln -------------------------------------------------------------------------------- /conferences/2024/05-bidimentional-arrays/code/Rogue/RogueGame/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/05-bidimentional-arrays/code/Rogue/RogueGame/Program.cs -------------------------------------------------------------------------------- /conferences/2024/05-bidimentional-arrays/code/Rogue/RogueGame/RogueGame.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/05-bidimentional-arrays/code/Rogue/RogueGame/RogueGame.csproj -------------------------------------------------------------------------------- /conferences/2024/05-bidimentional-arrays/code/Rogue/RogueLogic/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/05-bidimentional-arrays/code/Rogue/RogueLogic/Game.cs -------------------------------------------------------------------------------- /conferences/2024/05-bidimentional-arrays/code/Rogue/RogueLogic/RogueLogic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/05-bidimentional-arrays/code/Rogue/RogueLogic/RogueLogic.csproj -------------------------------------------------------------------------------- /conferences/2024/05-bidimentional-arrays/code/Rogue/makefile: -------------------------------------------------------------------------------- 1 | run: 2 | dotnet run --project RogueGame -------------------------------------------------------------------------------- /conferences/2024/05-bidimentional-arrays/code/TicTacToe/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/05-bidimentional-arrays/code/TicTacToe/Program.cs -------------------------------------------------------------------------------- /conferences/2024/05-bidimentional-arrays/code/TicTacToe/TicTacToe.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/05-bidimentional-arrays/code/TicTacToe/TicTacToe.csproj -------------------------------------------------------------------------------- /conferences/2024/05-bidimentional-arrays/lecture-05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/05-bidimentional-arrays/lecture-05.md -------------------------------------------------------------------------------- /conferences/2024/06-sorting/code/sorting-examples/MatCom.Sorting.Tester/MatCom.Sorting.Tester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/06-sorting/code/sorting-examples/MatCom.Sorting.Tester/MatCom.Sorting.Tester.csproj -------------------------------------------------------------------------------- /conferences/2024/06-sorting/code/sorting-examples/MatCom.Sorting.Tester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/06-sorting/code/sorting-examples/MatCom.Sorting.Tester/Program.cs -------------------------------------------------------------------------------- /conferences/2024/06-sorting/code/sorting-examples/MatCom.Sorting/MatCom.Sorting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/06-sorting/code/sorting-examples/MatCom.Sorting/MatCom.Sorting.csproj -------------------------------------------------------------------------------- /conferences/2024/06-sorting/code/sorting-examples/MatCom.Sorting/Sort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/06-sorting/code/sorting-examples/MatCom.Sorting/Sort.cs -------------------------------------------------------------------------------- /conferences/2024/06-sorting/code/sorting-examples/Sorting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/06-sorting/code/sorting-examples/Sorting.sln -------------------------------------------------------------------------------- /conferences/2024/06-sorting/code/sorting-examples/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/06-sorting/code/sorting-examples/makefile -------------------------------------------------------------------------------- /conferences/2024/06-sorting/lecture-06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/06-sorting/lecture-06.md -------------------------------------------------------------------------------- /conferences/2024/07-recursion-intro/code/recursion/recursion.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/07-recursion-intro/code/recursion/recursion.sln -------------------------------------------------------------------------------- /conferences/2024/07-recursion-intro/code/recursion/src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/07-recursion-intro/code/recursion/src/Program.cs -------------------------------------------------------------------------------- /conferences/2024/07-recursion-intro/code/recursion/src/src.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/07-recursion-intro/code/recursion/src/src.csproj -------------------------------------------------------------------------------- /conferences/2024/07-recursion-intro/lecture-07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/07-recursion-intro/lecture-07.md -------------------------------------------------------------------------------- /conferences/2024/08-divide-and-conquer/code/recursion/recursion.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/08-divide-and-conquer/code/recursion/recursion.sln -------------------------------------------------------------------------------- /conferences/2024/08-divide-and-conquer/code/recursion/src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/08-divide-and-conquer/code/recursion/src/Program.cs -------------------------------------------------------------------------------- /conferences/2024/08-divide-and-conquer/code/recursion/src/src.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/08-divide-and-conquer/code/recursion/src/src.csproj -------------------------------------------------------------------------------- /conferences/2024/08-divide-and-conquer/lecture-08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/08-divide-and-conquer/lecture-08.md -------------------------------------------------------------------------------- /conferences/2024/09-backtrack/code/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/09-backtrack/code/Program.cs -------------------------------------------------------------------------------- /conferences/2024/09-backtrack/code/src.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/09-backtrack/code/src.csproj -------------------------------------------------------------------------------- /conferences/2024/09-backtrack/lecture-09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/09-backtrack/lecture-09.md -------------------------------------------------------------------------------- /conferences/2024/10-combinatorial/code/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/10-combinatorial/code/Program.cs -------------------------------------------------------------------------------- /conferences/2024/10-combinatorial/code/src.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/10-combinatorial/code/src.csproj -------------------------------------------------------------------------------- /conferences/2024/10-combinatorial/lecture-10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/10-combinatorial/lecture-10.md -------------------------------------------------------------------------------- /conferences/2024/11-dinamic-programming/code/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/11-dinamic-programming/code/Program.cs -------------------------------------------------------------------------------- /conferences/2024/11-dinamic-programming/code/src.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/11-dinamic-programming/code/src.csproj -------------------------------------------------------------------------------- /conferences/2024/11-dinamic-programming/lecture-11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/11-dinamic-programming/lecture-11.md -------------------------------------------------------------------------------- /conferences/2024/12-inheritance/code/cuentas/Cuenta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/12-inheritance/code/cuentas/Cuenta.cs -------------------------------------------------------------------------------- /conferences/2024/12-inheritance/code/cuentas/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/12-inheritance/code/cuentas/Program.cs -------------------------------------------------------------------------------- /conferences/2024/12-inheritance/code/cuentas/Tienda.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/12-inheritance/code/cuentas/Tienda.cs -------------------------------------------------------------------------------- /conferences/2024/12-inheritance/code/cuentas/cuentas.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/12-inheritance/code/cuentas/cuentas.csproj -------------------------------------------------------------------------------- /conferences/2024/12-inheritance/lecture-12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/12-inheritance/lecture-12.md -------------------------------------------------------------------------------- /conferences/2024/13-polymorphism/code/cuentas/Cuenta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/13-polymorphism/code/cuentas/Cuenta.cs -------------------------------------------------------------------------------- /conferences/2024/13-polymorphism/code/cuentas/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/13-polymorphism/code/cuentas/Program.cs -------------------------------------------------------------------------------- /conferences/2024/13-polymorphism/code/cuentas/Tienda.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/13-polymorphism/code/cuentas/Tienda.cs -------------------------------------------------------------------------------- /conferences/2024/13-polymorphism/code/cuentas/cuentas.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/13-polymorphism/code/cuentas/cuentas.csproj -------------------------------------------------------------------------------- /conferences/2024/13-polymorphism/lecture-13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/13-polymorphism/lecture-13.md -------------------------------------------------------------------------------- /conferences/2024/14-abstract-and-object/code/Figures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/14-abstract-and-object/code/Figures.cs -------------------------------------------------------------------------------- /conferences/2024/14-abstract-and-object/code/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/14-abstract-and-object/code/Program.cs -------------------------------------------------------------------------------- /conferences/2024/14-abstract-and-object/code/src.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/14-abstract-and-object/code/src.csproj -------------------------------------------------------------------------------- /conferences/2024/14-abstract-and-object/lecture-14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/14-abstract-and-object/lecture-14.md -------------------------------------------------------------------------------- /conferences/2024/15-interfaces-and-genericity/code/15_1 BuscarCon==.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/15-interfaces-and-genericity/code/15_1 BuscarCon==.cs -------------------------------------------------------------------------------- /conferences/2024/15-interfaces-and-genericity/code/15_2 BuscarCon Equals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/15-interfaces-and-genericity/code/15_2 BuscarCon Equals.cs -------------------------------------------------------------------------------- /conferences/2024/15-interfaces-and-genericity/code/15_3 BuscarCon Genericidad e Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/15-interfaces-and-genericity/code/15_3 BuscarCon Genericidad e Interfaces.cs -------------------------------------------------------------------------------- /conferences/2024/15-interfaces-and-genericity/code/15_4 Ordenacion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/15-interfaces-and-genericity/code/15_4 Ordenacion.cs -------------------------------------------------------------------------------- /conferences/2024/15-interfaces-and-genericity/code/15_5 OrdenacionCon Genericidad e Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/15-interfaces-and-genericity/code/15_5 OrdenacionCon Genericidad e Interfaces.cs -------------------------------------------------------------------------------- /conferences/2024/15-interfaces-and-genericity/lecture-15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/15-interfaces-and-genericity/lecture-15.md -------------------------------------------------------------------------------- /conferences/2024/16-ienumerable-and-ienumerator/code/Program01.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/16-ienumerable-and-ienumerator/code/Program01.cs -------------------------------------------------------------------------------- /conferences/2024/16-ienumerable-and-ienumerator/code/Program02.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/16-ienumerable-and-ienumerator/code/Program02.cs -------------------------------------------------------------------------------- /conferences/2024/16-ienumerable-and-ienumerator/code/Program03.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/16-ienumerable-and-ienumerator/code/Program03.cs -------------------------------------------------------------------------------- /conferences/2024/16-ienumerable-and-ienumerator/code/Program04.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/16-ienumerable-and-ienumerator/code/Program04.cs -------------------------------------------------------------------------------- /conferences/2024/16-ienumerable-and-ienumerator/code/Program05.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/16-ienumerable-and-ienumerator/code/Program05.cs -------------------------------------------------------------------------------- /conferences/2024/16-ienumerable-and-ienumerator/lecture-16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/16-ienumerable-and-ienumerator/lecture-16.md -------------------------------------------------------------------------------- /conferences/2024/17-ilist-and-icollection/code/ProgramArrayList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/17-ilist-and-icollection/code/ProgramArrayList.cs -------------------------------------------------------------------------------- /conferences/2024/17-ilist-and-icollection/code/ProgramLinkedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/17-ilist-and-icollection/code/ProgramLinkedList.cs -------------------------------------------------------------------------------- /conferences/2024/17-ilist-and-icollection/lecture-17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/17-ilist-and-icollection/lecture-17.md -------------------------------------------------------------------------------- /conferences/2024/18-linked-structures/code/Examples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/18-linked-structures/code/Examples.cs -------------------------------------------------------------------------------- /conferences/2024/18-linked-structures/code/Examples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/18-linked-structures/code/Examples.csproj -------------------------------------------------------------------------------- /conferences/2024/18-linked-structures/lecture-18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/18-linked-structures/lecture-18.md -------------------------------------------------------------------------------- /conferences/2024/19-more-trees/code/ArbolBinario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/19-more-trees/code/ArbolBinario.cs -------------------------------------------------------------------------------- /conferences/2024/19-more-trees/code/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/19-more-trees/code/Program.cs -------------------------------------------------------------------------------- /conferences/2024/19-more-trees/code/Program.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/19-more-trees/code/Program.csproj -------------------------------------------------------------------------------- /conferences/2024/19-more-trees/lecture-19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/19-more-trees/lecture-19.md -------------------------------------------------------------------------------- /conferences/2024/20-dictionaries/code/01_OperacionesConDiccionarios/01_OperacionesConDiccionarios.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/20-dictionaries/code/01_OperacionesConDiccionarios/01_OperacionesConDiccionarios.csproj -------------------------------------------------------------------------------- /conferences/2024/20-dictionaries/code/01_OperacionesConDiccionarios/ProgramAgenda.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/20-dictionaries/code/01_OperacionesConDiccionarios/ProgramAgenda.cs -------------------------------------------------------------------------------- /conferences/2024/20-dictionaries/code/02_UsandoIEqualityComparer/02_UsandoIEqualityComparer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/20-dictionaries/code/02_UsandoIEqualityComparer/02_UsandoIEqualityComparer.csproj -------------------------------------------------------------------------------- /conferences/2024/20-dictionaries/code/02_UsandoIEqualityComparer/ProgramIEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/20-dictionaries/code/02_UsandoIEqualityComparer/ProgramIEqualityComparer.cs -------------------------------------------------------------------------------- /conferences/2024/20-dictionaries/code/03_FibonnaciConDiccionarios/03_FibonnaciConDiccionarios.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/20-dictionaries/code/03_FibonnaciConDiccionarios/03_FibonnaciConDiccionarios.csproj -------------------------------------------------------------------------------- /conferences/2024/20-dictionaries/code/03_FibonnaciConDiccionarios/ProgramFibMemorizado.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/20-dictionaries/code/03_FibonnaciConDiccionarios/ProgramFibMemorizado.cs -------------------------------------------------------------------------------- /conferences/2024/20-dictionaries/code/04_ImplementacionDeDiccionarioUsandoHashing/04_ImplementacionDeDiccionarioUsandoHashing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/20-dictionaries/code/04_ImplementacionDeDiccionarioUsandoHashing/04_ImplementacionDeDiccionarioUsandoHashing.csproj -------------------------------------------------------------------------------- /conferences/2024/20-dictionaries/code/04_ImplementacionDeDiccionarioUsandoHashing/ProgramHashTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/20-dictionaries/code/04_ImplementacionDeDiccionarioUsandoHashing/ProgramHashTable.cs -------------------------------------------------------------------------------- /conferences/2024/20-dictionaries/code/11_Diccionarios.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/20-dictionaries/code/11_Diccionarios.sln -------------------------------------------------------------------------------- /conferences/2024/20-dictionaries/code/11_Diccionarios/11_Diccionarios.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/20-dictionaries/code/11_Diccionarios/11_Diccionarios.csproj -------------------------------------------------------------------------------- /conferences/2024/20-dictionaries/code/11_Diccionarios/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/20-dictionaries/code/11_Diccionarios/Program.cs -------------------------------------------------------------------------------- /conferences/2024/20-dictionaries/lecture-20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/20-dictionaries/lecture-20.md -------------------------------------------------------------------------------- /conferences/2024/21-functional-programming/code/OrdenarConFuncionales.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/21-functional-programming/code/OrdenarConFuncionales.cs -------------------------------------------------------------------------------- /conferences/2024/21-functional-programming/code/OrdenarEmails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/21-functional-programming/code/OrdenarEmails.cs -------------------------------------------------------------------------------- /conferences/2024/21-functional-programming/code/program.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/21-functional-programming/code/program.csproj -------------------------------------------------------------------------------- /conferences/2024/21-functional-programming/lecture-21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2024/21-functional-programming/lecture-21.md -------------------------------------------------------------------------------- /conferences/2025/00-hello-world/00-hello-world.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2025/00-hello-world/00-hello-world.sln -------------------------------------------------------------------------------- /conferences/2025/00-hello-world/hello-world/Program.cs: -------------------------------------------------------------------------------- 1 | Console.WriteLine("Hello World"); -------------------------------------------------------------------------------- /conferences/2025/00-hello-world/hello-world/hello-world.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2025/00-hello-world/hello-world/hello-world.csproj -------------------------------------------------------------------------------- /conferences/2025/00-hello-world/lecture-00.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2025/00-hello-world/lecture-00.md -------------------------------------------------------------------------------- /conferences/2025/01-variables-expressions/01-variables-expressions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2025/01-variables-expressions/01-variables-expressions.sln -------------------------------------------------------------------------------- /conferences/2025/01-variables-expressions/app/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2025/01-variables-expressions/app/Program.cs -------------------------------------------------------------------------------- /conferences/2025/01-variables-expressions/app/app.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2025/01-variables-expressions/app/app.csproj -------------------------------------------------------------------------------- /conferences/2025/02-conditionals-methods/02-conditionals-methods.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2025/02-conditionals-methods/02-conditionals-methods.sln -------------------------------------------------------------------------------- /conferences/2025/02-conditionals-methods/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2025/02-conditionals-methods/Readme.md -------------------------------------------------------------------------------- /conferences/2025/02-conditionals-methods/tamagotchi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2025/02-conditionals-methods/tamagotchi/Program.cs -------------------------------------------------------------------------------- /conferences/2025/02-conditionals-methods/tamagotchi/tamagotchi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2025/02-conditionals-methods/tamagotchi/tamagotchi.csproj -------------------------------------------------------------------------------- /conferences/2025/03-loops/guesser/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2025/03-loops/guesser/Program.cs -------------------------------------------------------------------------------- /conferences/2025/03-loops/guesser/guesser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2025/03-loops/guesser/guesser.csproj -------------------------------------------------------------------------------- /conferences/2025/03-loops/loops.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/conferences/2025/03-loops/loops.sln -------------------------------------------------------------------------------- /cps/2023/cp1 - Intro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/cps/2023/cp1 - Intro.pdf -------------------------------------------------------------------------------- /cps/2023/cp2 - Hello Wolrd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/cps/2023/cp2 - Hello Wolrd.pdf -------------------------------------------------------------------------------- /cps/2023/cp3 - Condicionales.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/cps/2023/cp3 - Condicionales.pdf -------------------------------------------------------------------------------- /cps/2023/cp4- funciones.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/cps/2023/cp4- funciones.pdf -------------------------------------------------------------------------------- /cps/2023/cp5 - Ciclos.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/cps/2023/cp5 - Ciclos.pdf -------------------------------------------------------------------------------- /cps/2023/cp6 - Clases.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/cps/2023/cp6 - Clases.pdf -------------------------------------------------------------------------------- /cps/2023/cp7 - Ciclos (for black belts).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/cps/2023/cp7 - Ciclos (for black belts).pdf -------------------------------------------------------------------------------- /cps/2023/cp8 - Ciclos (may the for be with you).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/cps/2023/cp8 - Ciclos (may the for be with you).pdf -------------------------------------------------------------------------------- /cps/2023/cp9 - It is all about The Matrix.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/cps/2023/cp9 - It is all about The Matrix.pdf -------------------------------------------------------------------------------- /cps/2024-25/cp1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/cps/2024-25/cp1.pdf -------------------------------------------------------------------------------- /cps/2024-25/cp1_respuestas.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/cps/2024-25/cp1_respuestas.pdf -------------------------------------------------------------------------------- /cps/2024/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exams/2022/extra/college/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/college/.vscode/launch.json -------------------------------------------------------------------------------- /exams/2022/extra/college/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/college/.vscode/tasks.json -------------------------------------------------------------------------------- /exams/2022/extra/college/college.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/college/college.sln -------------------------------------------------------------------------------- /exams/2022/extra/college/college/Examenes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/college/college/Examenes.cs -------------------------------------------------------------------------------- /exams/2022/extra/college/college/college.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/college/college/college.csproj -------------------------------------------------------------------------------- /exams/2022/extra/college/tester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/college/tester/Program.cs -------------------------------------------------------------------------------- /exams/2022/extra/college/tester/tester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/college/tester/tester.csproj -------------------------------------------------------------------------------- /exams/2022/extra/festival/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/festival/.vscode/launch.json -------------------------------------------------------------------------------- /exams/2022/extra/festival/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/festival/.vscode/tasks.json -------------------------------------------------------------------------------- /exams/2022/extra/festival/festival.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/festival/festival.sln -------------------------------------------------------------------------------- /exams/2022/extra/festival/festival/Festival.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/festival/festival/Festival.cs -------------------------------------------------------------------------------- /exams/2022/extra/festival/festival/festival.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/festival/festival/festival.csproj -------------------------------------------------------------------------------- /exams/2022/extra/festival/tester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/festival/tester/Program.cs -------------------------------------------------------------------------------- /exams/2022/extra/festival/tester/tester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/festival/tester/tester.csproj -------------------------------------------------------------------------------- /exams/2022/extra/inventory/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/inventory/.gitignore -------------------------------------------------------------------------------- /exams/2022/extra/inventory/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/inventory/Readme.md -------------------------------------------------------------------------------- /exams/2022/extra/inventory/Readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/inventory/Readme.pdf -------------------------------------------------------------------------------- /exams/2022/extra/inventory/exam/Exam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/inventory/exam/Exam.cs -------------------------------------------------------------------------------- /exams/2022/extra/inventory/exam/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/inventory/exam/Program.cs -------------------------------------------------------------------------------- /exams/2022/extra/inventory/exam/exam.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/inventory/exam/exam.csproj -------------------------------------------------------------------------------- /exams/2022/extra/inventory/inventory.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/inventory/inventory.sln -------------------------------------------------------------------------------- /exams/2022/extra/inventory/inventory/Inventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/inventory/inventory/Inventory.cs -------------------------------------------------------------------------------- /exams/2022/extra/inventory/inventory/inventory.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/inventory/inventory/inventory.csproj -------------------------------------------------------------------------------- /exams/2022/extra/inventory/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/inventory/makefile -------------------------------------------------------------------------------- /exams/2022/extra/inventory/results-2022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/inventory/results-2022.md -------------------------------------------------------------------------------- /exams/2022/extra/inventory/tester/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/inventory/tester/README.md -------------------------------------------------------------------------------- /exams/2022/extra/inventory/tester/main/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/inventory/tester/main/Program.cs -------------------------------------------------------------------------------- /exams/2022/extra/inventory/tester/main/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/inventory/tester/main/Utils.cs -------------------------------------------------------------------------------- /exams/2022/extra/inventory/tester/main/main.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/inventory/tester/main/main.csproj -------------------------------------------------------------------------------- /exams/2022/extra/inventory/tester/makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | dotnet run --project main 4 | -------------------------------------------------------------------------------- /exams/2022/extra/inventory/tester/solutions/Tony_Cadahia_Poveda_C312.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/inventory/tester/solutions/Tony_Cadahia_Poveda_C312.cs -------------------------------------------------------------------------------- /exams/2022/extra/inventory/tester/solutions/base/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/inventory/tester/solutions/base/Solution.cs -------------------------------------------------------------------------------- /exams/2022/extra/inventory/tester/tester.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/inventory/tester/tester.sln -------------------------------------------------------------------------------- /exams/2022/extra/inventory/tester/tester/Inventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/inventory/tester/tester/Inventory.cs -------------------------------------------------------------------------------- /exams/2022/extra/inventory/tester/tester/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/inventory/tester/tester/Solution.cs -------------------------------------------------------------------------------- /exams/2022/extra/inventory/tester/tester/UnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/inventory/tester/tester/UnitTest.cs -------------------------------------------------------------------------------- /exams/2022/extra/inventory/tester/tester/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/inventory/tester/tester/Utils.cs -------------------------------------------------------------------------------- /exams/2022/extra/inventory/tester/tester/tester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/extra/inventory/tester/tester/tester.csproj -------------------------------------------------------------------------------- /exams/2022/final/cctv/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/cctv/.vscode/launch.json -------------------------------------------------------------------------------- /exams/2022/final/cctv/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/cctv/.vscode/tasks.json -------------------------------------------------------------------------------- /exams/2022/final/cctv/cctv.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/cctv/cctv.sln -------------------------------------------------------------------------------- /exams/2022/final/cctv/cctv/CCTV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/cctv/cctv/CCTV.cs -------------------------------------------------------------------------------- /exams/2022/final/cctv/cctv/cctv.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/cctv/cctv/cctv.csproj -------------------------------------------------------------------------------- /exams/2022/final/cctv/tester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/cctv/tester/Program.cs -------------------------------------------------------------------------------- /exams/2022/final/cctv/tester/tester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/cctv/tester/tester.csproj -------------------------------------------------------------------------------- /exams/2022/final/filesystem/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/.vscode/launch.json -------------------------------------------------------------------------------- /exams/2022/final/filesystem/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/.vscode/tasks.json -------------------------------------------------------------------------------- /exams/2022/final/filesystem/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/Readme.md -------------------------------------------------------------------------------- /exams/2022/final/filesystem/Readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/Readme.pdf -------------------------------------------------------------------------------- /exams/2022/final/filesystem/exam/Exam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/exam/Exam.cs -------------------------------------------------------------------------------- /exams/2022/final/filesystem/exam/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/exam/Program.cs -------------------------------------------------------------------------------- /exams/2022/final/filesystem/exam/exam.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/exam/exam.csproj -------------------------------------------------------------------------------- /exams/2022/final/filesystem/filesystem.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/filesystem.sln -------------------------------------------------------------------------------- /exams/2022/final/filesystem/filesystem/FileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/filesystem/FileSystem.cs -------------------------------------------------------------------------------- /exams/2022/final/filesystem/filesystem/filesystem.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/filesystem/filesystem.csproj -------------------------------------------------------------------------------- /exams/2022/final/filesystem/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/makefile -------------------------------------------------------------------------------- /exams/2022/final/filesystem/results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/results.md -------------------------------------------------------------------------------- /exams/2022/final/filesystem/tester/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/tester/README.md -------------------------------------------------------------------------------- /exams/2022/final/filesystem/tester/base/FileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/tester/base/FileSystem.cs -------------------------------------------------------------------------------- /exams/2022/final/filesystem/tester/base/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/tester/base/Solution.cs -------------------------------------------------------------------------------- /exams/2022/final/filesystem/tester/base/Wrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/tester/base/Wrapper.cs -------------------------------------------------------------------------------- /exams/2022/final/filesystem/tester/code/FileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/tester/code/FileSystem.cs -------------------------------------------------------------------------------- /exams/2022/final/filesystem/tester/code/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/tester/code/Solution.cs -------------------------------------------------------------------------------- /exams/2022/final/filesystem/tester/code/Wrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/tester/code/Wrapper.cs -------------------------------------------------------------------------------- /exams/2022/final/filesystem/tester/code/code.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/tester/code/code.csproj -------------------------------------------------------------------------------- /exams/2022/final/filesystem/tester/main/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/tester/main/Program.cs -------------------------------------------------------------------------------- /exams/2022/final/filesystem/tester/main/main.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/tester/main/main.csproj -------------------------------------------------------------------------------- /exams/2022/final/filesystem/tester/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/tester/makefile -------------------------------------------------------------------------------- /exams/2022/final/filesystem/tester/matcom-tester.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/tester/matcom-tester.sln -------------------------------------------------------------------------------- /exams/2022/final/filesystem/tester/solutions/Leandro_Rodriguez_Llosa_C311.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/tester/solutions/Leandro_Rodriguez_Llosa_C311.cs -------------------------------------------------------------------------------- /exams/2022/final/filesystem/tester/tester/BaseTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/tester/tester/BaseTester.cs -------------------------------------------------------------------------------- /exams/2022/final/filesystem/tester/tester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/tester/tester/Program.cs -------------------------------------------------------------------------------- /exams/2022/final/filesystem/tester/tester/Test1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/tester/tester/Test1.cs -------------------------------------------------------------------------------- /exams/2022/final/filesystem/tester/tester/Test2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/tester/tester/Test2.cs -------------------------------------------------------------------------------- /exams/2022/final/filesystem/tester/tester/Test3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/tester/tester/Test3.cs -------------------------------------------------------------------------------- /exams/2022/final/filesystem/tester/tester/Test4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/tester/tester/Test4.cs -------------------------------------------------------------------------------- /exams/2022/final/filesystem/tester/tester/Test5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/tester/tester/Test5.cs -------------------------------------------------------------------------------- /exams/2022/final/filesystem/tester/tester/Test6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/tester/tester/Test6.cs -------------------------------------------------------------------------------- /exams/2022/final/filesystem/tester/tester/Test7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/tester/tester/Test7.cs -------------------------------------------------------------------------------- /exams/2022/final/filesystem/tester/tester/TestClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/tester/tester/TestClasses.cs -------------------------------------------------------------------------------- /exams/2022/final/filesystem/tester/tester/TestUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/tester/tester/TestUtils.cs -------------------------------------------------------------------------------- /exams/2022/final/filesystem/tester/tester/Tester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/tester/tester/Tester.cs -------------------------------------------------------------------------------- /exams/2022/final/filesystem/tester/tester/tester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/filesystem/tester/tester/tester.csproj -------------------------------------------------------------------------------- /exams/2022/final/frequencies/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/frequencies/.vscode/launch.json -------------------------------------------------------------------------------- /exams/2022/final/frequencies/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/frequencies/.vscode/tasks.json -------------------------------------------------------------------------------- /exams/2022/final/frequencies/frequencies.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/frequencies/frequencies.sln -------------------------------------------------------------------------------- /exams/2022/final/frequencies/frequencies/Frecuencias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/frequencies/frequencies/Frecuencias.cs -------------------------------------------------------------------------------- /exams/2022/final/frequencies/frequencies/frequencies.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/frequencies/frequencies/frequencies.csproj -------------------------------------------------------------------------------- /exams/2022/final/frequencies/tester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/frequencies/tester/Program.cs -------------------------------------------------------------------------------- /exams/2022/final/frequencies/tester/tester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/final/frequencies/tester/tester.csproj -------------------------------------------------------------------------------- /exams/2022/recursion/battery-A/Readme-A.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/recursion/battery-A/Readme-A.pdf -------------------------------------------------------------------------------- /exams/2022/recursion/battery-B/Readme-B.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/recursion/battery-B/Readme-B.pdf -------------------------------------------------------------------------------- /exams/2022/recursion/battery-B/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/recursion/battery-B/Readme.md -------------------------------------------------------------------------------- /exams/2022/recursion/battery-B/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/recursion/battery-B/solve.py -------------------------------------------------------------------------------- /exams/2022/tcp1/tourist/Turismo_Ecologico.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp1/tourist/Turismo_Ecologico.docx -------------------------------------------------------------------------------- /exams/2022/tcp1/tourist/Turismo_Ecologico.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp1/tourist/Turismo_Ecologico.pdf -------------------------------------------------------------------------------- /exams/2022/tcp1/tourist/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp1/tourist/makefile -------------------------------------------------------------------------------- /exams/2022/tcp1/tourist/tester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp1/tourist/tester/Program.cs -------------------------------------------------------------------------------- /exams/2022/tcp1/tourist/tester/tester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp1/tourist/tester/tester.csproj -------------------------------------------------------------------------------- /exams/2022/tcp1/tourist/tourist.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp1/tourist/tourist.sln -------------------------------------------------------------------------------- /exams/2022/tcp1/tourist/tourist/Senderismo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp1/tourist/tourist/Senderismo.cs -------------------------------------------------------------------------------- /exams/2022/tcp1/tourist/tourist/tourist.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp1/tourist/tourist/tourist.csproj -------------------------------------------------------------------------------- /exams/2022/tcp1/wifi/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp1/wifi/.vscode/launch.json -------------------------------------------------------------------------------- /exams/2022/tcp1/wifi/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp1/wifi/.vscode/tasks.json -------------------------------------------------------------------------------- /exams/2022/tcp1/wifi/Intensidad_de_la_Senal.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp1/wifi/Intensidad_de_la_Senal.docx -------------------------------------------------------------------------------- /exams/2022/tcp1/wifi/Intensidad_de_la_Senal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp1/wifi/Intensidad_de_la_Senal.pdf -------------------------------------------------------------------------------- /exams/2022/tcp1/wifi/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp1/wifi/makefile -------------------------------------------------------------------------------- /exams/2022/tcp1/wifi/tester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp1/wifi/tester/Program.cs -------------------------------------------------------------------------------- /exams/2022/tcp1/wifi/tester/tester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp1/wifi/tester/tester.csproj -------------------------------------------------------------------------------- /exams/2022/tcp1/wifi/wifi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp1/wifi/wifi.sln -------------------------------------------------------------------------------- /exams/2022/tcp1/wifi/wifi/Wifi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp1/wifi/wifi/Wifi.cs -------------------------------------------------------------------------------- /exams/2022/tcp1/wifi/wifi/wifi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp1/wifi/wifi/wifi.csproj -------------------------------------------------------------------------------- /exams/2022/tcp2/TuEnvio/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp2/TuEnvio/.vscode/launch.json -------------------------------------------------------------------------------- /exams/2022/tcp2/TuEnvio/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp2/TuEnvio/.vscode/tasks.json -------------------------------------------------------------------------------- /exams/2022/tcp2/TuEnvio/Tester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp2/TuEnvio/Tester/Program.cs -------------------------------------------------------------------------------- /exams/2022/tcp2/TuEnvio/Tester/Tester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp2/TuEnvio/Tester/Tester.csproj -------------------------------------------------------------------------------- /exams/2022/tcp2/TuEnvio/TuEnvio.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp2/TuEnvio/TuEnvio.sln -------------------------------------------------------------------------------- /exams/2022/tcp2/TuEnvio/TuEnvio/TuEnvio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp2/TuEnvio/TuEnvio/TuEnvio.cs -------------------------------------------------------------------------------- /exams/2022/tcp2/TuEnvio/TuEnvio/TuEnvio.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp2/TuEnvio/TuEnvio/TuEnvio.csproj -------------------------------------------------------------------------------- /exams/2022/tcp2/TuEnvio/tu_envio.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp2/TuEnvio/tu_envio.docx -------------------------------------------------------------------------------- /exams/2022/tcp2/TuEnvio/tu_envio.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp2/TuEnvio/tu_envio.pdf -------------------------------------------------------------------------------- /exams/2022/tcp2/WebooSoft/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp2/WebooSoft/.vscode/launch.json -------------------------------------------------------------------------------- /exams/2022/tcp2/WebooSoft/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp2/WebooSoft/.vscode/tasks.json -------------------------------------------------------------------------------- /exams/2022/tcp2/WebooSoft/ProjectManager/Manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp2/WebooSoft/ProjectManager/Manager.cs -------------------------------------------------------------------------------- /exams/2022/tcp2/WebooSoft/ProjectManager/ProjectManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp2/WebooSoft/ProjectManager/ProjectManager.csproj -------------------------------------------------------------------------------- /exams/2022/tcp2/WebooSoft/Tester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp2/WebooSoft/Tester/Program.cs -------------------------------------------------------------------------------- /exams/2022/tcp2/WebooSoft/Tester/Tester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp2/WebooSoft/Tester/Tester.csproj -------------------------------------------------------------------------------- /exams/2022/tcp2/WebooSoft/WebooSoft.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp2/WebooSoft/WebooSoft.sln -------------------------------------------------------------------------------- /exams/2022/tcp2/WebooSoft/weboosoft.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp2/WebooSoft/weboosoft.docx -------------------------------------------------------------------------------- /exams/2022/tcp2/WebooSoft/weboosoft.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp2/WebooSoft/weboosoft.pdf -------------------------------------------------------------------------------- /exams/2022/tcp3/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp3/Readme.md -------------------------------------------------------------------------------- /exams/2022/tcp3/TuEnvio/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp3/TuEnvio/Interfaces.cs -------------------------------------------------------------------------------- /exams/2022/tcp3/TuEnvio/ShoppingCart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp3/TuEnvio/ShoppingCart.cs -------------------------------------------------------------------------------- /exams/2022/tcp3/TuEnvio/TuEnvio.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp3/TuEnvio/TuEnvio.csproj -------------------------------------------------------------------------------- /exams/2022/tcp3/TuEnvio2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp3/TuEnvio2.pdf -------------------------------------------------------------------------------- /exams/2022/tcp3/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp3/makefile -------------------------------------------------------------------------------- /exams/2022/tcp3/tcp3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp3/tcp3.sln -------------------------------------------------------------------------------- /exams/2022/tcp4/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp4/.vscode/launch.json -------------------------------------------------------------------------------- /exams/2022/tcp4/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp4/.vscode/tasks.json -------------------------------------------------------------------------------- /exams/2022/tcp4/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp4/Readme.md -------------------------------------------------------------------------------- /exams/2022/tcp4/Readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp4/Readme.pdf -------------------------------------------------------------------------------- /exams/2022/tcp4/exam/Exam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp4/exam/Exam.cs -------------------------------------------------------------------------------- /exams/2022/tcp4/exam/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp4/exam/Program.cs -------------------------------------------------------------------------------- /exams/2022/tcp4/exam/exam.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp4/exam/exam.csproj -------------------------------------------------------------------------------- /exams/2022/tcp4/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp4/makefile -------------------------------------------------------------------------------- /exams/2022/tcp4/tcp4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp4/tcp4.sln -------------------------------------------------------------------------------- /exams/2022/tcp4/trees/Trees.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp4/trees/Trees.cs -------------------------------------------------------------------------------- /exams/2022/tcp4/trees/trees.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2022/tcp4/trees/trees.csproj -------------------------------------------------------------------------------- /exams/2023/final/alimentando_leones/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2023/final/alimentando_leones/.vscode/launch.json -------------------------------------------------------------------------------- /exams/2023/final/alimentando_leones/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2023/final/alimentando_leones/.vscode/tasks.json -------------------------------------------------------------------------------- /exams/2023/final/alimentando_leones/exam/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2023/final/alimentando_leones/exam/Program.cs -------------------------------------------------------------------------------- /exams/2023/final/alimentando_leones/exam/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2023/final/alimentando_leones/exam/Utils.cs -------------------------------------------------------------------------------- /exams/2023/final/alimentando_leones/exam/exam.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2023/final/alimentando_leones/exam/exam.csproj -------------------------------------------------------------------------------- /exams/2023/final/alimentando_leones/final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2023/final/alimentando_leones/final.pdf -------------------------------------------------------------------------------- /exams/2023/final/alimentando_más_leones/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2023/final/alimentando_más_leones/.vscode/launch.json -------------------------------------------------------------------------------- /exams/2023/final/alimentando_más_leones/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2023/final/alimentando_más_leones/.vscode/tasks.json -------------------------------------------------------------------------------- /exams/2023/final/alimentando_más_leones/Alimentando más leones.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2023/final/alimentando_más_leones/Alimentando más leones.pdf -------------------------------------------------------------------------------- /exams/2023/final/alimentando_más_leones/exam/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2023/final/alimentando_más_leones/exam/Program.cs -------------------------------------------------------------------------------- /exams/2023/final/alimentando_más_leones/exam/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2023/final/alimentando_más_leones/exam/Solution.cs -------------------------------------------------------------------------------- /exams/2023/final/alimentando_más_leones/exam/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2023/final/alimentando_más_leones/exam/Utils.cs -------------------------------------------------------------------------------- /exams/2023/final/alimentando_más_leones/exam/exam.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2023/final/alimentando_más_leones/exam/exam.csproj -------------------------------------------------------------------------------- /exams/2023/final/contrabando_pirata/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2023/final/contrabando_pirata/.vscode/launch.json -------------------------------------------------------------------------------- /exams/2023/final/contrabando_pirata/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2023/final/contrabando_pirata/.vscode/tasks.json -------------------------------------------------------------------------------- /exams/2023/final/contrabando_pirata/exam/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2023/final/contrabando_pirata/exam/Program.cs -------------------------------------------------------------------------------- /exams/2023/final/contrabando_pirata/exam/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2023/final/contrabando_pirata/exam/Utils.cs -------------------------------------------------------------------------------- /exams/2023/final/contrabando_pirata/exam/exam.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2023/final/contrabando_pirata/exam/exam.csproj -------------------------------------------------------------------------------- /exams/2023/final/contrabando_pirata/final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exams/2023/final/contrabando_pirata/final.pdf -------------------------------------------------------------------------------- /exercises/01_types_expressions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exercises/01_types_expressions.md -------------------------------------------------------------------------------- /exercises/02_conditionals_cycles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exercises/02_conditionals_cycles.md -------------------------------------------------------------------------------- /exercises/03_cycles_arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exercises/03_cycles_arrays.md -------------------------------------------------------------------------------- /exercises/04_clases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exercises/04_clases.md -------------------------------------------------------------------------------- /exercises/05_recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exercises/05_recursion.md -------------------------------------------------------------------------------- /exercises/2-classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exercises/2-classes.md -------------------------------------------------------------------------------- /exercises/assets/area_sombreada.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exercises/assets/area_sombreada.jpg -------------------------------------------------------------------------------- /exercises/exercises.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exercises/exercises.pdf -------------------------------------------------------------------------------- /exercises/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exercises/makefile -------------------------------------------------------------------------------- /exercises/poo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/exercises/poo.pdf -------------------------------------------------------------------------------- /methodology/2024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/methodology/2024.md -------------------------------------------------------------------------------- /methodology/backtrack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/methodology/backtrack.md -------------------------------------------------------------------------------- /methodology/backtrack.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/methodology/backtrack.pdf -------------------------------------------------------------------------------- /projects/battle-cards/Battle Cards.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/projects/battle-cards/Battle Cards.pdf -------------------------------------------------------------------------------- /projects/battle-cards/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/projects/battle-cards/Readme.md -------------------------------------------------------------------------------- /projects/hulk/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/projects/hulk/Readme.md -------------------------------------------------------------------------------- /results/2023/1er TC/resultados_juan_I.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/results/2023/1er TC/resultados_juan_I.md -------------------------------------------------------------------------------- /results/2023/1er TC/resultados_juan_II.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcom/programming/HEAD/results/2023/1er TC/resultados_juan_II.md --------------------------------------------------------------------------------