Collections • Lesson 22/100
Mutable Lists
Lists that can be modified
📚
Learn💻
Code❓
Quiz🏆
Practice⭐
Complete📚 Lý thuyết
**MutableList** cho phép thêm, xóa, sửa phần tử.
**Tạo MutableList:**
- mutableListOf("a", "b")
- arrayListOf()
- ArrayList<Type>()
**Methods:**
- add(element), add(index, element)
- remove(element), removeAt(index)
- set(index, element), [index] = value
- clear(), sort(), shuffle()