Skip to content

Instantly share code, notes, and snippets.

@ramah
Last active October 5, 2023 15:00
Show Gist options
  • Save ramah/a5b9d1b273642c715e7c80102fe23c89 to your computer and use it in GitHub Desktop.
Save ramah/a5b9d1b273642c715e7c80102fe23c89 to your computer and use it in GitHub Desktop.
void main() {
const String text = "constitutionnellement";
var result = text
.split('')
.asMap()
.map((idx, e) => MapEntry(idx, idx.isEven ? e.toUpperCase() : e))
.values
.join('');
print(result);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment