Collections • Lesson 22/100+50 XP

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()