├── .gitignore ├── .idea ├── .gitignore ├── codeStyles ├── csv-plugin.xml ├── gradle.xml ├── misc.xml └── vcs.xml ├── LICENSE ├── README.md ├── costOfLiving.csv ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts └── src └── main └── kotlin ├── Main.kt ├── dataSource ├── CsvDataSource.kt └── utils │ ├── ColumnIndex.kt │ └── CsvParser.kt ├── interactor ├── CostOfLivingDataSource.kt ├── GetCityHasCheapestInternetConnectionInteractor.kt └── GetHighestSalaryAverageCititesNamesInteractor.kt └── model ├── CarsPrices.kt ├── CityEntity.kt ├── ClothesPrices.kt ├── DrinksPrices.kt ├── FoodPrices.kt ├── FruitAndVegetablesPrices.kt ├── MealsPrices.kt ├── RealEstatesPrices.kt ├── ServicesPrices.kt └── TransportationsPrices.kt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/codeStyles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/.idea/codeStyles -------------------------------------------------------------------------------- /.idea/csv-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/.idea/csv-plugin.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/README.md -------------------------------------------------------------------------------- /costOfLiving.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/costOfLiving.csv -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | 2 | rootProject.name = "Cost-of-living-app" 3 | 4 | -------------------------------------------------------------------------------- /src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /src/main/kotlin/dataSource/CsvDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/src/main/kotlin/dataSource/CsvDataSource.kt -------------------------------------------------------------------------------- /src/main/kotlin/dataSource/utils/ColumnIndex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/src/main/kotlin/dataSource/utils/ColumnIndex.kt -------------------------------------------------------------------------------- /src/main/kotlin/dataSource/utils/CsvParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/src/main/kotlin/dataSource/utils/CsvParser.kt -------------------------------------------------------------------------------- /src/main/kotlin/interactor/CostOfLivingDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/src/main/kotlin/interactor/CostOfLivingDataSource.kt -------------------------------------------------------------------------------- /src/main/kotlin/interactor/GetCityHasCheapestInternetConnectionInteractor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/src/main/kotlin/interactor/GetCityHasCheapestInternetConnectionInteractor.kt -------------------------------------------------------------------------------- /src/main/kotlin/interactor/GetHighestSalaryAverageCititesNamesInteractor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/src/main/kotlin/interactor/GetHighestSalaryAverageCititesNamesInteractor.kt -------------------------------------------------------------------------------- /src/main/kotlin/model/CarsPrices.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/src/main/kotlin/model/CarsPrices.kt -------------------------------------------------------------------------------- /src/main/kotlin/model/CityEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/src/main/kotlin/model/CityEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/model/ClothesPrices.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/src/main/kotlin/model/ClothesPrices.kt -------------------------------------------------------------------------------- /src/main/kotlin/model/DrinksPrices.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/src/main/kotlin/model/DrinksPrices.kt -------------------------------------------------------------------------------- /src/main/kotlin/model/FoodPrices.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/src/main/kotlin/model/FoodPrices.kt -------------------------------------------------------------------------------- /src/main/kotlin/model/FruitAndVegetablesPrices.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/src/main/kotlin/model/FruitAndVegetablesPrices.kt -------------------------------------------------------------------------------- /src/main/kotlin/model/MealsPrices.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/src/main/kotlin/model/MealsPrices.kt -------------------------------------------------------------------------------- /src/main/kotlin/model/RealEstatesPrices.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/src/main/kotlin/model/RealEstatesPrices.kt -------------------------------------------------------------------------------- /src/main/kotlin/model/ServicesPrices.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/src/main/kotlin/model/ServicesPrices.kt -------------------------------------------------------------------------------- /src/main/kotlin/model/TransportationsPrices.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheChance101/cost-of-living/HEAD/src/main/kotlin/model/TransportationsPrices.kt --------------------------------------------------------------------------------