■ HashSet 클래스를 사용하는 방법을 보여준다.
▶ 예제 코드 (DART)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import 'dart:collection'; import 'dart:math'; void main() { Random rand = Random(); HashSet<int> hashSet = HashSet(); while (hashSet.length < 6) { hashSet.add(rand.nextInt(45)); } print(hashSet); } |