This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Adding this line so we can perform the variable assignment: num eachElement = 0; | |
// ignore_for_file: unused_local_variable | |
import 'dart:collection'; | |
import 'dart:math'; | |
void main(List<String> args) { | |
final list = UnmodifiableListView( | |
List<int>.generate(200000000, (index) => index), | |
); |