일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- PANDAS
- dataframe
- numpy
- Java
- Excel
- Python
- hive
- 파이썬
- Google Excel
- array
- Github
- math
- SQL
- Mac
- c#
- PostgreSQL
- Tkinter
- Google Spreadsheet
- list
- Apache
- string
- Kotlin
- PySpark
- GIT
- gas
- Redshift
- django
- matplotlib
- google apps script
- Today
- Total
목록Kotlin (32)
달나라 노트
Original source = play.kotlinlang.org/byExample/01_introduction/01_Hello%20world fun main() { var list_numbers = listOf(1, 2, -10, 5, 12) // 1 var var_max = list_numbers.maxOrNull() // 2 println(var_max) var var_min = list_numbers.minOrNull() // 3 println(var_min) var list_empty = emptyList() // 4 var var_max_empty = list_empty.maxOrNull() // 4 println(var_max_empty) var var_min_empty = list_emp..
Original source = play.kotlinlang.org/byExample/01_introduction/01_Hello%20world fun main() { var list_fruit = listOf("Apple", "PineApple", "Red_Strawberry", "Red_Apple", "Yellow_Banana", "Yellow_Yellowmelon") // 1 var var_part = list_fruit.partition() {x -> x.contains("Apple")} // 2 println(var_part) // 3 println(var_part.first) // 4 println(var_part.second) // 5 var (var_apple, var_not_apple) ..
Original source = play.kotlinlang.org/byExample/01_introduction/01_Hello%20world fun main() { var list_numbers = listOf(1, -1, 2, -2, 3, -3) var list_sorted = list_numbers.sorted() println(list_sorted) var list_sort_desc = list_numbers.sortedDescending() println(list_sort_desc) } -- Result [-3, -2, -1, 1, 2, 3] [3, 2, 1, -1, -2, -3] sorted 함수는 list를 오름차순으로 정렬합니다. sortedDescending 함수는 list를 내림차순으..
Original source = play.kotlinlang.org/byExample/01_introduction/01_Hello%20world fun main() { var list_fruit = listOf("Apple", "PineApple", "Red_Strawberry", "Red_Apple", "Yellow_Banana", "Yellow_Yellowmelon") // 1 var var_element_cnt = list_fruit.count() // 2 println(var_element_cnt) var var_element_cnt2 = list_fruit.count() {x -> x.contains("Apple")} // 3 println(var_element_cnt2) } -- Result ..