Skip to content

Instantly share code, notes, and snippets.

@vadimtsushko
Last active October 25, 2022 17:44
Show Gist options
  • Save vadimtsushko/93859368d6fdb1b159193fa0df7cd247 to your computer and use it in GitHub Desktop.
Save vadimtsushko/93859368d6fdb1b159193fa0df7cd247 to your computer and use it in GitHub Desktop.
void main() {
var barcode = '0023,023,45,567';
var barcodeOut = barcode.split(',')
.map((e) => int.parse(e))
.map((e) => e.toString())
.toSet()
.join(',');
print(barcodeOut);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment