├── .gitignore ├── Ejercicios ├── Ejercicios01.pdf ├── Ejercicios02.pdf ├── Ejercicios03.pdf └── Ejercicios04.pdf ├── Extras ├── cheat_sheet_java8.png ├── davechild_regular-expressions.pdf ├── java01.png ├── java02.png ├── java03.png ├── kotlin01.png ├── kotlin02.png ├── scope.png ├── scope01.jpeg ├── scope2.png ├── scope3.png └── xantier_kotlin_collection-extensions.pdf ├── README.md ├── Soluciones ├── 01-Func-FuncExtension │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── Main.kt ├── 02-Func-Lambda │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── Main.kt ├── 03-Func-SobrecargaOperadores │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── Main.kt ├── 04-Func-Personas │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ ├── Main.kt │ │ ├── extensions │ │ └── Estudiante.kt │ │ └── models │ │ └── Estudiante.kt ├── 05-Func-Inline │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── Main.kt ├── 06-Func-Infix │ ├── .gitignore │ ├── .idea │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ ├── misc.xml │ │ └── workspace.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── Main.kt ├── 07-Func-Receiver │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── Main.kt ├── 08-Func-ScopeFunc │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── Main.kt ├── 09-Gen-Inicial │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ ├── Main.kt │ │ └── types │ │ ├── Box.kt │ │ ├── Pair.kt │ │ └── Triple.kt ├── 10-Gen-Repository │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ ├── Main.kt │ │ ├── models │ │ └── Persona.kt │ │ └── repositories │ │ ├── crud │ │ └── CrudRepository.kt │ │ └── personas │ │ └── PersonasRepository.kt ├── 11-Gen-Varianza-Restricciones-Refied │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ ├── misc.xml │ │ └── uiDesigner.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ ├── Refied.kt │ │ ├── Restricciones.kt │ │ └── Varianza.kt ├── 12-Colecciones-Listas │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ ├── Main.kt │ │ ├── models │ │ └── Persona.kt │ │ └── repositories │ │ ├── FunctionalGenericRepository.kt │ │ ├── crud │ │ └── CrudRepository.kt │ │ └── personas │ │ └── PersonasRepository.kt ├── 13-Colecciones-Pila │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ ├── Main.kt │ │ ├── Pila.kt │ │ └── Stack.kt ├── 14-Colecciones-Cola │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ ├── Cola.kt │ │ ├── Main.kt │ │ └── Queue.kt ├── 15-Colecciones-Conjuntos │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ ├── Main.kt │ │ └── Persona.kt ├── 16-Comparable-Comparator │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ ├── Main.kt │ │ └── Persona.kt ├── 17-Colecciones-Mapas │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── Main.kt ├── 18-Palindromo │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── Main.kt ├── 19-Colecciones-Repository │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ ├── CrudRepository.kt │ │ ├── Main.kt │ │ ├── Persona.kt │ │ ├── PersonasExceptions.kt │ │ ├── PersonasMapRepository.kt │ │ ├── PersonasRepository.kt │ │ ├── PersonasSetRepository.kt │ │ └── PesonasListRepository.kt ├── 20-PlanificadorProcesosPrioridad │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ ├── misc.xml │ │ └── uiDesigner.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ ├── main │ │ └── kotlin │ │ │ ├── Cola.kt │ │ │ ├── ColaProcesosLista.kt │ │ │ ├── ColaProcesosPrioritariosLista.kt │ │ │ ├── ColaProcesosPrioritariosMap.kt │ │ │ ├── ColaProcesosPrioritariosTreeMapList.kt │ │ │ ├── ColaProcesosPrioritariosTreeMapMap.kt │ │ │ ├── ColaProcesosPrioritariosTreeSet.kt │ │ │ ├── Main.kt │ │ │ ├── Planificador.kt │ │ │ ├── Proceso.kt │ │ │ └── ProcesosFactory.kt │ │ └── test │ │ └── kotlin │ │ ├── ColaProcesosListaTest.kt │ │ ├── ColaProcesosPrioritariosListaTest.kt │ │ └── ColaProcesosPrioritariosTreeSetTest.kt ├── 22-CacheLimitada │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ ├── Main.kt │ │ ├── Vehiculo.kt │ │ └── cache │ │ └── Cache.kt ├── 23-RepositorioCacheable │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ ├── misc.xml │ │ └── uiDesigner.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ ├── Main.kt │ │ ├── exceptions │ │ └── VehiculoException.kt │ │ ├── models │ │ └── Vehiculo.kt │ │ ├── repositories │ │ ├── cache │ │ │ ├── Cache.kt │ │ │ └── CacheImpl.kt │ │ ├── crud │ │ │ └── CrudRepository.kt │ │ └── vehiculos │ │ │ ├── VehiculosRepository.kt │ │ │ └── VehiculosRepositoryImpl.kt │ │ └── services │ │ ├── VehiculosService.kt │ │ └── VehiculosServiceImpl.kt └── 24-Matrix │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── gradle.xml │ ├── inspectionProfiles │ │ └── Project_Default.xml │ ├── kotlinc.xml │ └── misc.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ └── main │ └── kotlin │ ├── Main.kt │ ├── controllers │ └── TheMatrixController.kt │ ├── factories │ ├── GenericoFactory.kt │ └── SmithFactory.kt │ ├── models │ ├── Generico.kt │ ├── Localizacion.kt │ ├── Neo.kt │ ├── Persona.kt │ ├── Personaje.kt │ └── Smith.kt │ └── repositories │ ├── cola │ ├── Cola.kt │ └── ColaImpl.kt │ └── matriz │ ├── Matriz.kt │ └── MatrizImpl.kt └── images ├── 01.png ├── 02.png ├── 03.png ├── 04.png ├── 05.png ├── 06.png ├── 07.png ├── colecciones.webp ├── secuences.webp ├── secuences01.webp ├── secuencias.png └── sql-collections.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/.gitignore -------------------------------------------------------------------------------- /Ejercicios/Ejercicios01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Ejercicios/Ejercicios01.pdf -------------------------------------------------------------------------------- /Ejercicios/Ejercicios02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Ejercicios/Ejercicios02.pdf -------------------------------------------------------------------------------- /Ejercicios/Ejercicios03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Ejercicios/Ejercicios03.pdf -------------------------------------------------------------------------------- /Ejercicios/Ejercicios04.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Ejercicios/Ejercicios04.pdf -------------------------------------------------------------------------------- /Extras/cheat_sheet_java8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Extras/cheat_sheet_java8.png -------------------------------------------------------------------------------- /Extras/davechild_regular-expressions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Extras/davechild_regular-expressions.pdf -------------------------------------------------------------------------------- /Extras/java01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Extras/java01.png -------------------------------------------------------------------------------- /Extras/java02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Extras/java02.png -------------------------------------------------------------------------------- /Extras/java03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Extras/java03.png -------------------------------------------------------------------------------- /Extras/kotlin01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Extras/kotlin01.png -------------------------------------------------------------------------------- /Extras/kotlin02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Extras/kotlin02.png -------------------------------------------------------------------------------- /Extras/scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Extras/scope.png -------------------------------------------------------------------------------- /Extras/scope01.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Extras/scope01.jpeg -------------------------------------------------------------------------------- /Extras/scope2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Extras/scope2.png -------------------------------------------------------------------------------- /Extras/scope3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Extras/scope3.png -------------------------------------------------------------------------------- /Extras/xantier_kotlin_collection-extensions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Extras/xantier_kotlin_collection-extensions.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/README.md -------------------------------------------------------------------------------- /Soluciones/01-Func-FuncExtension/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/01-Func-FuncExtension/.gitignore -------------------------------------------------------------------------------- /Soluciones/01-Func-FuncExtension/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/01-Func-FuncExtension/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/01-Func-FuncExtension/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/01-Func-FuncExtension/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/01-Func-FuncExtension/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/01-Func-FuncExtension/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/01-Func-FuncExtension/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/01-Func-FuncExtension/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/01-Func-FuncExtension/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/01-Func-FuncExtension/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/01-Func-FuncExtension/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/01-Func-FuncExtension/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/01-Func-FuncExtension/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/01-Func-FuncExtension/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/01-Func-FuncExtension/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/01-Func-FuncExtension/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/01-Func-FuncExtension/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/01-Func-FuncExtension/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/01-Func-FuncExtension/gradlew -------------------------------------------------------------------------------- /Soluciones/01-Func-FuncExtension/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/01-Func-FuncExtension/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/01-Func-FuncExtension/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/01-Func-FuncExtension/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/01-Func-FuncExtension/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/01-Func-FuncExtension/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/02-Func-Lambda/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/02-Func-Lambda/.gitignore -------------------------------------------------------------------------------- /Soluciones/02-Func-Lambda/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/02-Func-Lambda/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/02-Func-Lambda/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/02-Func-Lambda/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/02-Func-Lambda/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/02-Func-Lambda/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/02-Func-Lambda/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/02-Func-Lambda/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/02-Func-Lambda/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/02-Func-Lambda/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/02-Func-Lambda/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/02-Func-Lambda/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/02-Func-Lambda/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/02-Func-Lambda/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/02-Func-Lambda/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/02-Func-Lambda/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/02-Func-Lambda/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/02-Func-Lambda/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/02-Func-Lambda/gradlew -------------------------------------------------------------------------------- /Soluciones/02-Func-Lambda/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/02-Func-Lambda/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/02-Func-Lambda/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/02-Func-Lambda/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/02-Func-Lambda/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/02-Func-Lambda/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/03-Func-SobrecargaOperadores/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/03-Func-SobrecargaOperadores/.gitignore -------------------------------------------------------------------------------- /Soluciones/03-Func-SobrecargaOperadores/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/03-Func-SobrecargaOperadores/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/03-Func-SobrecargaOperadores/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/03-Func-SobrecargaOperadores/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/03-Func-SobrecargaOperadores/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/03-Func-SobrecargaOperadores/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/03-Func-SobrecargaOperadores/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/03-Func-SobrecargaOperadores/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/03-Func-SobrecargaOperadores/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/03-Func-SobrecargaOperadores/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/03-Func-SobrecargaOperadores/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/03-Func-SobrecargaOperadores/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/03-Func-SobrecargaOperadores/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/03-Func-SobrecargaOperadores/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/03-Func-SobrecargaOperadores/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/03-Func-SobrecargaOperadores/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/03-Func-SobrecargaOperadores/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/03-Func-SobrecargaOperadores/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/03-Func-SobrecargaOperadores/gradlew -------------------------------------------------------------------------------- /Soluciones/03-Func-SobrecargaOperadores/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/03-Func-SobrecargaOperadores/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/03-Func-SobrecargaOperadores/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/03-Func-SobrecargaOperadores/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/03-Func-SobrecargaOperadores/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/03-Func-SobrecargaOperadores/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/04-Func-Personas/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/04-Func-Personas/.gitignore -------------------------------------------------------------------------------- /Soluciones/04-Func-Personas/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/04-Func-Personas/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/04-Func-Personas/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/04-Func-Personas/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/04-Func-Personas/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/04-Func-Personas/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/04-Func-Personas/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/04-Func-Personas/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/04-Func-Personas/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/04-Func-Personas/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/04-Func-Personas/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/04-Func-Personas/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/04-Func-Personas/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/04-Func-Personas/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/04-Func-Personas/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/04-Func-Personas/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/04-Func-Personas/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/04-Func-Personas/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/04-Func-Personas/gradlew -------------------------------------------------------------------------------- /Soluciones/04-Func-Personas/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/04-Func-Personas/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/04-Func-Personas/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/04-Func-Personas/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/04-Func-Personas/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/04-Func-Personas/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/04-Func-Personas/src/main/kotlin/extensions/Estudiante.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/04-Func-Personas/src/main/kotlin/extensions/Estudiante.kt -------------------------------------------------------------------------------- /Soluciones/04-Func-Personas/src/main/kotlin/models/Estudiante.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/04-Func-Personas/src/main/kotlin/models/Estudiante.kt -------------------------------------------------------------------------------- /Soluciones/05-Func-Inline/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/05-Func-Inline/.gitignore -------------------------------------------------------------------------------- /Soluciones/05-Func-Inline/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/05-Func-Inline/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/05-Func-Inline/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/05-Func-Inline/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/05-Func-Inline/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/05-Func-Inline/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/05-Func-Inline/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/05-Func-Inline/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/05-Func-Inline/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/05-Func-Inline/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/05-Func-Inline/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/05-Func-Inline/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/05-Func-Inline/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/05-Func-Inline/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/05-Func-Inline/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/05-Func-Inline/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/05-Func-Inline/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/05-Func-Inline/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/05-Func-Inline/gradlew -------------------------------------------------------------------------------- /Soluciones/05-Func-Inline/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/05-Func-Inline/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/05-Func-Inline/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/05-Func-Inline/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/05-Func-Inline/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/05-Func-Inline/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/06-Func-Infix/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/06-Func-Infix/.gitignore -------------------------------------------------------------------------------- /Soluciones/06-Func-Infix/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/06-Func-Infix/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/06-Func-Infix/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/06-Func-Infix/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/06-Func-Infix/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/06-Func-Infix/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/06-Func-Infix/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/06-Func-Infix/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/06-Func-Infix/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/06-Func-Infix/.idea/workspace.xml -------------------------------------------------------------------------------- /Soluciones/06-Func-Infix/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/06-Func-Infix/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/06-Func-Infix/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/06-Func-Infix/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/06-Func-Infix/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/06-Func-Infix/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/06-Func-Infix/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/06-Func-Infix/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/06-Func-Infix/gradlew -------------------------------------------------------------------------------- /Soluciones/06-Func-Infix/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/06-Func-Infix/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/06-Func-Infix/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/06-Func-Infix/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/06-Func-Infix/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/06-Func-Infix/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/07-Func-Receiver/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/07-Func-Receiver/.gitignore -------------------------------------------------------------------------------- /Soluciones/07-Func-Receiver/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/07-Func-Receiver/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/07-Func-Receiver/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/07-Func-Receiver/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/07-Func-Receiver/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/07-Func-Receiver/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/07-Func-Receiver/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/07-Func-Receiver/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/07-Func-Receiver/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/07-Func-Receiver/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/07-Func-Receiver/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/07-Func-Receiver/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/07-Func-Receiver/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/07-Func-Receiver/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/07-Func-Receiver/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/07-Func-Receiver/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/07-Func-Receiver/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/07-Func-Receiver/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/07-Func-Receiver/gradlew -------------------------------------------------------------------------------- /Soluciones/07-Func-Receiver/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/07-Func-Receiver/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/07-Func-Receiver/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/07-Func-Receiver/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/07-Func-Receiver/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/07-Func-Receiver/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/08-Func-ScopeFunc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/08-Func-ScopeFunc/.gitignore -------------------------------------------------------------------------------- /Soluciones/08-Func-ScopeFunc/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/08-Func-ScopeFunc/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/08-Func-ScopeFunc/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/08-Func-ScopeFunc/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/08-Func-ScopeFunc/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/08-Func-ScopeFunc/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/08-Func-ScopeFunc/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/08-Func-ScopeFunc/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/08-Func-ScopeFunc/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/08-Func-ScopeFunc/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/08-Func-ScopeFunc/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/08-Func-ScopeFunc/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/08-Func-ScopeFunc/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/08-Func-ScopeFunc/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/08-Func-ScopeFunc/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/08-Func-ScopeFunc/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/08-Func-ScopeFunc/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/08-Func-ScopeFunc/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/08-Func-ScopeFunc/gradlew -------------------------------------------------------------------------------- /Soluciones/08-Func-ScopeFunc/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/08-Func-ScopeFunc/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/08-Func-ScopeFunc/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/08-Func-ScopeFunc/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/08-Func-ScopeFunc/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/08-Func-ScopeFunc/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/09-Gen-Inicial/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/09-Gen-Inicial/.gitignore -------------------------------------------------------------------------------- /Soluciones/09-Gen-Inicial/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/09-Gen-Inicial/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/09-Gen-Inicial/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/09-Gen-Inicial/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/09-Gen-Inicial/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/09-Gen-Inicial/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/09-Gen-Inicial/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/09-Gen-Inicial/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/09-Gen-Inicial/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/09-Gen-Inicial/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/09-Gen-Inicial/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/09-Gen-Inicial/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/09-Gen-Inicial/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/09-Gen-Inicial/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/09-Gen-Inicial/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/09-Gen-Inicial/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/09-Gen-Inicial/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/09-Gen-Inicial/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/09-Gen-Inicial/gradlew -------------------------------------------------------------------------------- /Soluciones/09-Gen-Inicial/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/09-Gen-Inicial/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/09-Gen-Inicial/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/09-Gen-Inicial/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/09-Gen-Inicial/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/09-Gen-Inicial/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/09-Gen-Inicial/src/main/kotlin/types/Box.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/09-Gen-Inicial/src/main/kotlin/types/Box.kt -------------------------------------------------------------------------------- /Soluciones/09-Gen-Inicial/src/main/kotlin/types/Pair.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/09-Gen-Inicial/src/main/kotlin/types/Pair.kt -------------------------------------------------------------------------------- /Soluciones/09-Gen-Inicial/src/main/kotlin/types/Triple.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/09-Gen-Inicial/src/main/kotlin/types/Triple.kt -------------------------------------------------------------------------------- /Soluciones/10-Gen-Repository/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/10-Gen-Repository/.gitignore -------------------------------------------------------------------------------- /Soluciones/10-Gen-Repository/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/10-Gen-Repository/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/10-Gen-Repository/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/10-Gen-Repository/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/10-Gen-Repository/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/10-Gen-Repository/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/10-Gen-Repository/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/10-Gen-Repository/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/10-Gen-Repository/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/10-Gen-Repository/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/10-Gen-Repository/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/10-Gen-Repository/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/10-Gen-Repository/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/10-Gen-Repository/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/10-Gen-Repository/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/10-Gen-Repository/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/10-Gen-Repository/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/10-Gen-Repository/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/10-Gen-Repository/gradlew -------------------------------------------------------------------------------- /Soluciones/10-Gen-Repository/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/10-Gen-Repository/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/10-Gen-Repository/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/10-Gen-Repository/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/10-Gen-Repository/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/10-Gen-Repository/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/10-Gen-Repository/src/main/kotlin/models/Persona.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/10-Gen-Repository/src/main/kotlin/models/Persona.kt -------------------------------------------------------------------------------- /Soluciones/10-Gen-Repository/src/main/kotlin/repositories/crud/CrudRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/10-Gen-Repository/src/main/kotlin/repositories/crud/CrudRepository.kt -------------------------------------------------------------------------------- /Soluciones/10-Gen-Repository/src/main/kotlin/repositories/personas/PersonasRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/10-Gen-Repository/src/main/kotlin/repositories/personas/PersonasRepository.kt -------------------------------------------------------------------------------- /Soluciones/11-Gen-Varianza-Restricciones-Refied/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/11-Gen-Varianza-Restricciones-Refied/.gitignore -------------------------------------------------------------------------------- /Soluciones/11-Gen-Varianza-Restricciones-Refied/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/11-Gen-Varianza-Restricciones-Refied/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/11-Gen-Varianza-Restricciones-Refied/.idea/.name: -------------------------------------------------------------------------------- 1 | Gen-Varianza -------------------------------------------------------------------------------- /Soluciones/11-Gen-Varianza-Restricciones-Refied/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/11-Gen-Varianza-Restricciones-Refied/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/11-Gen-Varianza-Restricciones-Refied/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/11-Gen-Varianza-Restricciones-Refied/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/11-Gen-Varianza-Restricciones-Refied/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/11-Gen-Varianza-Restricciones-Refied/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/11-Gen-Varianza-Restricciones-Refied/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/11-Gen-Varianza-Restricciones-Refied/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/11-Gen-Varianza-Restricciones-Refied/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/11-Gen-Varianza-Restricciones-Refied/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /Soluciones/11-Gen-Varianza-Restricciones-Refied/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/11-Gen-Varianza-Restricciones-Refied/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/11-Gen-Varianza-Restricciones-Refied/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/11-Gen-Varianza-Restricciones-Refied/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/11-Gen-Varianza-Restricciones-Refied/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/11-Gen-Varianza-Restricciones-Refied/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/11-Gen-Varianza-Restricciones-Refied/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/11-Gen-Varianza-Restricciones-Refied/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/11-Gen-Varianza-Restricciones-Refied/gradlew -------------------------------------------------------------------------------- /Soluciones/11-Gen-Varianza-Restricciones-Refied/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/11-Gen-Varianza-Restricciones-Refied/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/11-Gen-Varianza-Restricciones-Refied/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/11-Gen-Varianza-Restricciones-Refied/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/11-Gen-Varianza-Restricciones-Refied/src/main/kotlin/Refied.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/11-Gen-Varianza-Restricciones-Refied/src/main/kotlin/Refied.kt -------------------------------------------------------------------------------- /Soluciones/11-Gen-Varianza-Restricciones-Refied/src/main/kotlin/Restricciones.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/11-Gen-Varianza-Restricciones-Refied/src/main/kotlin/Restricciones.kt -------------------------------------------------------------------------------- /Soluciones/11-Gen-Varianza-Restricciones-Refied/src/main/kotlin/Varianza.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/11-Gen-Varianza-Restricciones-Refied/src/main/kotlin/Varianza.kt -------------------------------------------------------------------------------- /Soluciones/12-Colecciones-Listas/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/12-Colecciones-Listas/.gitignore -------------------------------------------------------------------------------- /Soluciones/12-Colecciones-Listas/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/12-Colecciones-Listas/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/12-Colecciones-Listas/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/12-Colecciones-Listas/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/12-Colecciones-Listas/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/12-Colecciones-Listas/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/12-Colecciones-Listas/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/12-Colecciones-Listas/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/12-Colecciones-Listas/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/12-Colecciones-Listas/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/12-Colecciones-Listas/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/12-Colecciones-Listas/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/12-Colecciones-Listas/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/12-Colecciones-Listas/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/12-Colecciones-Listas/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/12-Colecciones-Listas/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/12-Colecciones-Listas/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/12-Colecciones-Listas/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/12-Colecciones-Listas/gradlew -------------------------------------------------------------------------------- /Soluciones/12-Colecciones-Listas/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/12-Colecciones-Listas/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/12-Colecciones-Listas/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/12-Colecciones-Listas/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/12-Colecciones-Listas/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/12-Colecciones-Listas/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/12-Colecciones-Listas/src/main/kotlin/models/Persona.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/12-Colecciones-Listas/src/main/kotlin/models/Persona.kt -------------------------------------------------------------------------------- /Soluciones/12-Colecciones-Listas/src/main/kotlin/repositories/FunctionalGenericRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/12-Colecciones-Listas/src/main/kotlin/repositories/FunctionalGenericRepository.kt -------------------------------------------------------------------------------- /Soluciones/12-Colecciones-Listas/src/main/kotlin/repositories/crud/CrudRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/12-Colecciones-Listas/src/main/kotlin/repositories/crud/CrudRepository.kt -------------------------------------------------------------------------------- /Soluciones/12-Colecciones-Listas/src/main/kotlin/repositories/personas/PersonasRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/12-Colecciones-Listas/src/main/kotlin/repositories/personas/PersonasRepository.kt -------------------------------------------------------------------------------- /Soluciones/13-Colecciones-Pila/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/13-Colecciones-Pila/.gitignore -------------------------------------------------------------------------------- /Soluciones/13-Colecciones-Pila/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/13-Colecciones-Pila/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/13-Colecciones-Pila/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/13-Colecciones-Pila/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/13-Colecciones-Pila/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/13-Colecciones-Pila/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/13-Colecciones-Pila/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/13-Colecciones-Pila/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/13-Colecciones-Pila/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/13-Colecciones-Pila/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/13-Colecciones-Pila/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/13-Colecciones-Pila/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/13-Colecciones-Pila/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/13-Colecciones-Pila/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/13-Colecciones-Pila/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/13-Colecciones-Pila/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/13-Colecciones-Pila/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/13-Colecciones-Pila/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/13-Colecciones-Pila/gradlew -------------------------------------------------------------------------------- /Soluciones/13-Colecciones-Pila/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/13-Colecciones-Pila/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/13-Colecciones-Pila/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/13-Colecciones-Pila/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/13-Colecciones-Pila/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/13-Colecciones-Pila/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/13-Colecciones-Pila/src/main/kotlin/Pila.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/13-Colecciones-Pila/src/main/kotlin/Pila.kt -------------------------------------------------------------------------------- /Soluciones/13-Colecciones-Pila/src/main/kotlin/Stack.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/13-Colecciones-Pila/src/main/kotlin/Stack.kt -------------------------------------------------------------------------------- /Soluciones/14-Colecciones-Cola/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/14-Colecciones-Cola/.gitignore -------------------------------------------------------------------------------- /Soluciones/14-Colecciones-Cola/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/14-Colecciones-Cola/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/14-Colecciones-Cola/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/14-Colecciones-Cola/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/14-Colecciones-Cola/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/14-Colecciones-Cola/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/14-Colecciones-Cola/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/14-Colecciones-Cola/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/14-Colecciones-Cola/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/14-Colecciones-Cola/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/14-Colecciones-Cola/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/14-Colecciones-Cola/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/14-Colecciones-Cola/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/14-Colecciones-Cola/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/14-Colecciones-Cola/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/14-Colecciones-Cola/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/14-Colecciones-Cola/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/14-Colecciones-Cola/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/14-Colecciones-Cola/gradlew -------------------------------------------------------------------------------- /Soluciones/14-Colecciones-Cola/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/14-Colecciones-Cola/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/14-Colecciones-Cola/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/14-Colecciones-Cola/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/14-Colecciones-Cola/src/main/kotlin/Cola.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/14-Colecciones-Cola/src/main/kotlin/Cola.kt -------------------------------------------------------------------------------- /Soluciones/14-Colecciones-Cola/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/14-Colecciones-Cola/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/14-Colecciones-Cola/src/main/kotlin/Queue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/14-Colecciones-Cola/src/main/kotlin/Queue.kt -------------------------------------------------------------------------------- /Soluciones/15-Colecciones-Conjuntos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/15-Colecciones-Conjuntos/.gitignore -------------------------------------------------------------------------------- /Soluciones/15-Colecciones-Conjuntos/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/15-Colecciones-Conjuntos/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/15-Colecciones-Conjuntos/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/15-Colecciones-Conjuntos/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/15-Colecciones-Conjuntos/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/15-Colecciones-Conjuntos/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/15-Colecciones-Conjuntos/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/15-Colecciones-Conjuntos/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/15-Colecciones-Conjuntos/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/15-Colecciones-Conjuntos/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/15-Colecciones-Conjuntos/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/15-Colecciones-Conjuntos/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/15-Colecciones-Conjuntos/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/15-Colecciones-Conjuntos/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/15-Colecciones-Conjuntos/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/15-Colecciones-Conjuntos/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/15-Colecciones-Conjuntos/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/15-Colecciones-Conjuntos/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/15-Colecciones-Conjuntos/gradlew -------------------------------------------------------------------------------- /Soluciones/15-Colecciones-Conjuntos/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/15-Colecciones-Conjuntos/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/15-Colecciones-Conjuntos/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/15-Colecciones-Conjuntos/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/15-Colecciones-Conjuntos/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/15-Colecciones-Conjuntos/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/15-Colecciones-Conjuntos/src/main/kotlin/Persona.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/15-Colecciones-Conjuntos/src/main/kotlin/Persona.kt -------------------------------------------------------------------------------- /Soluciones/16-Comparable-Comparator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/16-Comparable-Comparator/.gitignore -------------------------------------------------------------------------------- /Soluciones/16-Comparable-Comparator/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/16-Comparable-Comparator/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/16-Comparable-Comparator/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/16-Comparable-Comparator/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/16-Comparable-Comparator/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/16-Comparable-Comparator/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/16-Comparable-Comparator/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/16-Comparable-Comparator/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/16-Comparable-Comparator/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/16-Comparable-Comparator/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/16-Comparable-Comparator/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/16-Comparable-Comparator/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/16-Comparable-Comparator/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/16-Comparable-Comparator/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/16-Comparable-Comparator/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/16-Comparable-Comparator/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/16-Comparable-Comparator/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/16-Comparable-Comparator/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/16-Comparable-Comparator/gradlew -------------------------------------------------------------------------------- /Soluciones/16-Comparable-Comparator/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/16-Comparable-Comparator/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/16-Comparable-Comparator/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/16-Comparable-Comparator/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/16-Comparable-Comparator/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/16-Comparable-Comparator/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/16-Comparable-Comparator/src/main/kotlin/Persona.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/16-Comparable-Comparator/src/main/kotlin/Persona.kt -------------------------------------------------------------------------------- /Soluciones/17-Colecciones-Mapas/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/17-Colecciones-Mapas/.gitignore -------------------------------------------------------------------------------- /Soluciones/17-Colecciones-Mapas/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/17-Colecciones-Mapas/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/17-Colecciones-Mapas/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/17-Colecciones-Mapas/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/17-Colecciones-Mapas/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/17-Colecciones-Mapas/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/17-Colecciones-Mapas/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/17-Colecciones-Mapas/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/17-Colecciones-Mapas/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/17-Colecciones-Mapas/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/17-Colecciones-Mapas/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/17-Colecciones-Mapas/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/17-Colecciones-Mapas/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/17-Colecciones-Mapas/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/17-Colecciones-Mapas/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/17-Colecciones-Mapas/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/17-Colecciones-Mapas/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/17-Colecciones-Mapas/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/17-Colecciones-Mapas/gradlew -------------------------------------------------------------------------------- /Soluciones/17-Colecciones-Mapas/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/17-Colecciones-Mapas/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/17-Colecciones-Mapas/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/17-Colecciones-Mapas/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/17-Colecciones-Mapas/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/17-Colecciones-Mapas/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/18-Palindromo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/18-Palindromo/.gitignore -------------------------------------------------------------------------------- /Soluciones/18-Palindromo/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/18-Palindromo/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/18-Palindromo/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/18-Palindromo/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/18-Palindromo/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/18-Palindromo/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/18-Palindromo/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/18-Palindromo/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/18-Palindromo/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/18-Palindromo/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/18-Palindromo/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/18-Palindromo/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/18-Palindromo/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/18-Palindromo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/18-Palindromo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/18-Palindromo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/18-Palindromo/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/18-Palindromo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/18-Palindromo/gradlew -------------------------------------------------------------------------------- /Soluciones/18-Palindromo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/18-Palindromo/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/18-Palindromo/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/18-Palindromo/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/18-Palindromo/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/18-Palindromo/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/19-Colecciones-Repository/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/19-Colecciones-Repository/.gitignore -------------------------------------------------------------------------------- /Soluciones/19-Colecciones-Repository/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/19-Colecciones-Repository/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/19-Colecciones-Repository/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/19-Colecciones-Repository/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/19-Colecciones-Repository/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/19-Colecciones-Repository/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/19-Colecciones-Repository/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/19-Colecciones-Repository/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/19-Colecciones-Repository/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/19-Colecciones-Repository/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/19-Colecciones-Repository/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/19-Colecciones-Repository/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/19-Colecciones-Repository/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/19-Colecciones-Repository/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/19-Colecciones-Repository/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/19-Colecciones-Repository/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/19-Colecciones-Repository/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/19-Colecciones-Repository/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/19-Colecciones-Repository/gradlew -------------------------------------------------------------------------------- /Soluciones/19-Colecciones-Repository/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/19-Colecciones-Repository/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/19-Colecciones-Repository/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/19-Colecciones-Repository/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/19-Colecciones-Repository/src/main/kotlin/CrudRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/19-Colecciones-Repository/src/main/kotlin/CrudRepository.kt -------------------------------------------------------------------------------- /Soluciones/19-Colecciones-Repository/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- 1 | package dev.joseluisgs 2 | 3 | fun main() { 4 | println("Hello World!") 5 | } -------------------------------------------------------------------------------- /Soluciones/19-Colecciones-Repository/src/main/kotlin/Persona.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/19-Colecciones-Repository/src/main/kotlin/Persona.kt -------------------------------------------------------------------------------- /Soluciones/19-Colecciones-Repository/src/main/kotlin/PersonasExceptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/19-Colecciones-Repository/src/main/kotlin/PersonasExceptions.kt -------------------------------------------------------------------------------- /Soluciones/19-Colecciones-Repository/src/main/kotlin/PersonasMapRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/19-Colecciones-Repository/src/main/kotlin/PersonasMapRepository.kt -------------------------------------------------------------------------------- /Soluciones/19-Colecciones-Repository/src/main/kotlin/PersonasRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/19-Colecciones-Repository/src/main/kotlin/PersonasRepository.kt -------------------------------------------------------------------------------- /Soluciones/19-Colecciones-Repository/src/main/kotlin/PersonasSetRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/19-Colecciones-Repository/src/main/kotlin/PersonasSetRepository.kt -------------------------------------------------------------------------------- /Soluciones/19-Colecciones-Repository/src/main/kotlin/PesonasListRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/19-Colecciones-Repository/src/main/kotlin/PesonasListRepository.kt -------------------------------------------------------------------------------- /Soluciones/20-PlanificadorProcesosPrioridad/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/20-PlanificadorProcesosPrioridad/.gitignore -------------------------------------------------------------------------------- /Soluciones/20-PlanificadorProcesosPrioridad/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/20-PlanificadorProcesosPrioridad/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/20-PlanificadorProcesosPrioridad/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/20-PlanificadorProcesosPrioridad/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/20-PlanificadorProcesosPrioridad/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/20-PlanificadorProcesosPrioridad/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/20-PlanificadorProcesosPrioridad/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/20-PlanificadorProcesosPrioridad/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/20-PlanificadorProcesosPrioridad/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/20-PlanificadorProcesosPrioridad/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/20-PlanificadorProcesosPrioridad/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/20-PlanificadorProcesosPrioridad/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /Soluciones/20-PlanificadorProcesosPrioridad/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/20-PlanificadorProcesosPrioridad/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/20-PlanificadorProcesosPrioridad/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/20-PlanificadorProcesosPrioridad/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/20-PlanificadorProcesosPrioridad/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/20-PlanificadorProcesosPrioridad/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/20-PlanificadorProcesosPrioridad/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/20-PlanificadorProcesosPrioridad/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/20-PlanificadorProcesosPrioridad/gradlew -------------------------------------------------------------------------------- /Soluciones/20-PlanificadorProcesosPrioridad/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/20-PlanificadorProcesosPrioridad/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/20-PlanificadorProcesosPrioridad/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/20-PlanificadorProcesosPrioridad/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/20-PlanificadorProcesosPrioridad/src/main/kotlin/Cola.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/20-PlanificadorProcesosPrioridad/src/main/kotlin/Cola.kt -------------------------------------------------------------------------------- /Soluciones/20-PlanificadorProcesosPrioridad/src/main/kotlin/ColaProcesosLista.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/20-PlanificadorProcesosPrioridad/src/main/kotlin/ColaProcesosLista.kt -------------------------------------------------------------------------------- /Soluciones/20-PlanificadorProcesosPrioridad/src/main/kotlin/ColaProcesosPrioritariosLista.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/20-PlanificadorProcesosPrioridad/src/main/kotlin/ColaProcesosPrioritariosLista.kt -------------------------------------------------------------------------------- /Soluciones/20-PlanificadorProcesosPrioridad/src/main/kotlin/ColaProcesosPrioritariosMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/20-PlanificadorProcesosPrioridad/src/main/kotlin/ColaProcesosPrioritariosMap.kt -------------------------------------------------------------------------------- /Soluciones/20-PlanificadorProcesosPrioridad/src/main/kotlin/ColaProcesosPrioritariosTreeMapList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/20-PlanificadorProcesosPrioridad/src/main/kotlin/ColaProcesosPrioritariosTreeMapList.kt -------------------------------------------------------------------------------- /Soluciones/20-PlanificadorProcesosPrioridad/src/main/kotlin/ColaProcesosPrioritariosTreeMapMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/20-PlanificadorProcesosPrioridad/src/main/kotlin/ColaProcesosPrioritariosTreeMapMap.kt -------------------------------------------------------------------------------- /Soluciones/20-PlanificadorProcesosPrioridad/src/main/kotlin/ColaProcesosPrioritariosTreeSet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/20-PlanificadorProcesosPrioridad/src/main/kotlin/ColaProcesosPrioritariosTreeSet.kt -------------------------------------------------------------------------------- /Soluciones/20-PlanificadorProcesosPrioridad/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/20-PlanificadorProcesosPrioridad/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/20-PlanificadorProcesosPrioridad/src/main/kotlin/Planificador.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/20-PlanificadorProcesosPrioridad/src/main/kotlin/Planificador.kt -------------------------------------------------------------------------------- /Soluciones/20-PlanificadorProcesosPrioridad/src/main/kotlin/Proceso.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/20-PlanificadorProcesosPrioridad/src/main/kotlin/Proceso.kt -------------------------------------------------------------------------------- /Soluciones/20-PlanificadorProcesosPrioridad/src/main/kotlin/ProcesosFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/20-PlanificadorProcesosPrioridad/src/main/kotlin/ProcesosFactory.kt -------------------------------------------------------------------------------- /Soluciones/20-PlanificadorProcesosPrioridad/src/test/kotlin/ColaProcesosListaTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/20-PlanificadorProcesosPrioridad/src/test/kotlin/ColaProcesosListaTest.kt -------------------------------------------------------------------------------- /Soluciones/20-PlanificadorProcesosPrioridad/src/test/kotlin/ColaProcesosPrioritariosListaTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/20-PlanificadorProcesosPrioridad/src/test/kotlin/ColaProcesosPrioritariosListaTest.kt -------------------------------------------------------------------------------- /Soluciones/20-PlanificadorProcesosPrioridad/src/test/kotlin/ColaProcesosPrioritariosTreeSetTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/20-PlanificadorProcesosPrioridad/src/test/kotlin/ColaProcesosPrioritariosTreeSetTest.kt -------------------------------------------------------------------------------- /Soluciones/22-CacheLimitada/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/22-CacheLimitada/.gitignore -------------------------------------------------------------------------------- /Soluciones/22-CacheLimitada/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/22-CacheLimitada/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/22-CacheLimitada/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/22-CacheLimitada/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/22-CacheLimitada/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/22-CacheLimitada/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/22-CacheLimitada/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/22-CacheLimitada/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/22-CacheLimitada/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/22-CacheLimitada/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/22-CacheLimitada/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/22-CacheLimitada/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/22-CacheLimitada/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/22-CacheLimitada/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/22-CacheLimitada/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/22-CacheLimitada/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/22-CacheLimitada/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/22-CacheLimitada/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/22-CacheLimitada/gradlew -------------------------------------------------------------------------------- /Soluciones/22-CacheLimitada/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/22-CacheLimitada/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/22-CacheLimitada/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/22-CacheLimitada/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/22-CacheLimitada/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/22-CacheLimitada/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/22-CacheLimitada/src/main/kotlin/Vehiculo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/22-CacheLimitada/src/main/kotlin/Vehiculo.kt -------------------------------------------------------------------------------- /Soluciones/22-CacheLimitada/src/main/kotlin/cache/Cache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/22-CacheLimitada/src/main/kotlin/cache/Cache.kt -------------------------------------------------------------------------------- /Soluciones/23-RepositorioCacheable/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/23-RepositorioCacheable/.gitignore -------------------------------------------------------------------------------- /Soluciones/23-RepositorioCacheable/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/23-RepositorioCacheable/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/23-RepositorioCacheable/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/23-RepositorioCacheable/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/23-RepositorioCacheable/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/23-RepositorioCacheable/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/23-RepositorioCacheable/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/23-RepositorioCacheable/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/23-RepositorioCacheable/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/23-RepositorioCacheable/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/23-RepositorioCacheable/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/23-RepositorioCacheable/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /Soluciones/23-RepositorioCacheable/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/23-RepositorioCacheable/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/23-RepositorioCacheable/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/23-RepositorioCacheable/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/23-RepositorioCacheable/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/23-RepositorioCacheable/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/23-RepositorioCacheable/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/23-RepositorioCacheable/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/23-RepositorioCacheable/gradlew -------------------------------------------------------------------------------- /Soluciones/23-RepositorioCacheable/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/23-RepositorioCacheable/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/23-RepositorioCacheable/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/23-RepositorioCacheable/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/23-RepositorioCacheable/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/23-RepositorioCacheable/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/23-RepositorioCacheable/src/main/kotlin/exceptions/VehiculoException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/23-RepositorioCacheable/src/main/kotlin/exceptions/VehiculoException.kt -------------------------------------------------------------------------------- /Soluciones/23-RepositorioCacheable/src/main/kotlin/models/Vehiculo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/23-RepositorioCacheable/src/main/kotlin/models/Vehiculo.kt -------------------------------------------------------------------------------- /Soluciones/23-RepositorioCacheable/src/main/kotlin/repositories/cache/Cache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/23-RepositorioCacheable/src/main/kotlin/repositories/cache/Cache.kt -------------------------------------------------------------------------------- /Soluciones/23-RepositorioCacheable/src/main/kotlin/repositories/cache/CacheImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/23-RepositorioCacheable/src/main/kotlin/repositories/cache/CacheImpl.kt -------------------------------------------------------------------------------- /Soluciones/23-RepositorioCacheable/src/main/kotlin/repositories/crud/CrudRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/23-RepositorioCacheable/src/main/kotlin/repositories/crud/CrudRepository.kt -------------------------------------------------------------------------------- /Soluciones/23-RepositorioCacheable/src/main/kotlin/repositories/vehiculos/VehiculosRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/23-RepositorioCacheable/src/main/kotlin/repositories/vehiculos/VehiculosRepository.kt -------------------------------------------------------------------------------- /Soluciones/23-RepositorioCacheable/src/main/kotlin/repositories/vehiculos/VehiculosRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/23-RepositorioCacheable/src/main/kotlin/repositories/vehiculos/VehiculosRepositoryImpl.kt -------------------------------------------------------------------------------- /Soluciones/23-RepositorioCacheable/src/main/kotlin/services/VehiculosService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/23-RepositorioCacheable/src/main/kotlin/services/VehiculosService.kt -------------------------------------------------------------------------------- /Soluciones/23-RepositorioCacheable/src/main/kotlin/services/VehiculosServiceImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/23-RepositorioCacheable/src/main/kotlin/services/VehiculosServiceImpl.kt -------------------------------------------------------------------------------- /Soluciones/24-Matrix/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/24-Matrix/.gitignore -------------------------------------------------------------------------------- /Soluciones/24-Matrix/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/24-Matrix/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/24-Matrix/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/24-Matrix/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/24-Matrix/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/24-Matrix/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/24-Matrix/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/24-Matrix/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/24-Matrix/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/24-Matrix/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/24-Matrix/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/24-Matrix/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/24-Matrix/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/24-Matrix/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/24-Matrix/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/24-Matrix/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/24-Matrix/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/24-Matrix/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/24-Matrix/gradlew -------------------------------------------------------------------------------- /Soluciones/24-Matrix/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/24-Matrix/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/24-Matrix/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/24-Matrix/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/24-Matrix/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/24-Matrix/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/24-Matrix/src/main/kotlin/controllers/TheMatrixController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/24-Matrix/src/main/kotlin/controllers/TheMatrixController.kt -------------------------------------------------------------------------------- /Soluciones/24-Matrix/src/main/kotlin/factories/GenericoFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/24-Matrix/src/main/kotlin/factories/GenericoFactory.kt -------------------------------------------------------------------------------- /Soluciones/24-Matrix/src/main/kotlin/factories/SmithFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/24-Matrix/src/main/kotlin/factories/SmithFactory.kt -------------------------------------------------------------------------------- /Soluciones/24-Matrix/src/main/kotlin/models/Generico.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/24-Matrix/src/main/kotlin/models/Generico.kt -------------------------------------------------------------------------------- /Soluciones/24-Matrix/src/main/kotlin/models/Localizacion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/24-Matrix/src/main/kotlin/models/Localizacion.kt -------------------------------------------------------------------------------- /Soluciones/24-Matrix/src/main/kotlin/models/Neo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/24-Matrix/src/main/kotlin/models/Neo.kt -------------------------------------------------------------------------------- /Soluciones/24-Matrix/src/main/kotlin/models/Persona.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/24-Matrix/src/main/kotlin/models/Persona.kt -------------------------------------------------------------------------------- /Soluciones/24-Matrix/src/main/kotlin/models/Personaje.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/24-Matrix/src/main/kotlin/models/Personaje.kt -------------------------------------------------------------------------------- /Soluciones/24-Matrix/src/main/kotlin/models/Smith.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/24-Matrix/src/main/kotlin/models/Smith.kt -------------------------------------------------------------------------------- /Soluciones/24-Matrix/src/main/kotlin/repositories/cola/Cola.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/24-Matrix/src/main/kotlin/repositories/cola/Cola.kt -------------------------------------------------------------------------------- /Soluciones/24-Matrix/src/main/kotlin/repositories/cola/ColaImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/24-Matrix/src/main/kotlin/repositories/cola/ColaImpl.kt -------------------------------------------------------------------------------- /Soluciones/24-Matrix/src/main/kotlin/repositories/matriz/Matriz.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/24-Matrix/src/main/kotlin/repositories/matriz/Matriz.kt -------------------------------------------------------------------------------- /Soluciones/24-Matrix/src/main/kotlin/repositories/matriz/MatrizImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/Soluciones/24-Matrix/src/main/kotlin/repositories/matriz/MatrizImpl.kt -------------------------------------------------------------------------------- /images/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/images/01.png -------------------------------------------------------------------------------- /images/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/images/02.png -------------------------------------------------------------------------------- /images/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/images/03.png -------------------------------------------------------------------------------- /images/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/images/04.png -------------------------------------------------------------------------------- /images/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/images/05.png -------------------------------------------------------------------------------- /images/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/images/06.png -------------------------------------------------------------------------------- /images/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/images/07.png -------------------------------------------------------------------------------- /images/colecciones.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/images/colecciones.webp -------------------------------------------------------------------------------- /images/secuences.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/images/secuences.webp -------------------------------------------------------------------------------- /images/secuences01.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/images/secuences01.webp -------------------------------------------------------------------------------- /images/secuencias.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/images/secuencias.png -------------------------------------------------------------------------------- /images/sql-collections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-06-2023-2024/HEAD/images/sql-collections.png --------------------------------------------------------------------------------