반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- PySpark
- google apps script
- dataframe
- numpy
- gas
- Python
- hive
- matplotlib
- c#
- Java
- Excel
- SQL
- Github
- array
- Mac
- Tkinter
- math
- Google Spreadsheet
- string
- list
- PANDAS
- Kotlin
- GIT
- django
- Apache
- PostgreSQL
- 파이썬
- Google Excel
- Redshift
Archives
- Today
- Total
목록sortedDescending (1)
달나라 노트
Kotlin - sorted, sortedDescending, sortedWith
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를 내림차순으..
Kotlin
2021. 3. 16. 00:24