This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fun main(args: Array<String>) { | |
val enter = 5900 | |
val rez = Operation.getFakeData().getRecommendedCategories(enter) | |
println(rez) | |
} | |
/** | |
* Фильтруем историю операций по сумме + - 15 %, например. | |
* После группируем назваиния категорий и сортируем по количеству названий в каждой категории (в обратном порядке), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fun main(args: Array<String>) { | |
val enter = 5900 | |
val rez = Operation.getFakeData().getRecommendedCategories(enter) | |
println(rez) | |
} | |
/** | |
* Фильтруем историю операций по сумме + - 15 %, например. | |
* После группируем назваиния категорий и сортируем по количеству названий в каждой категории (в обратном порядке), |