Created
October 25, 2022 17:04
-
-
Save vadimtsushko/5a6d1ae74f1540f6be1482c9902a2c08 to your computer and use it in GitHub Desktop.
This file contains 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
void main() { | |
var barcode = '0023,023,23,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