Posts by Aprendiz DartPad • 17 points
2 posts
-
-3
votes1
answer34
viewsQ: A function that dynamically prints all the elements of the list in reverse order [1, 2, 3, 5, 8, 13, 21, 34, 55, 89],
DART FUNCTION TO PRINT ELEMENTS IN REVERSE ORDER IN CASE SHE WOULD BE LIKE THIS 1, 2, 3, 5, 8, 13, 21, 34, 55, 89 89,55, 34, 21, 13, 8, 5, 3, 2, 1 REVERSE
dartasked Aprendiz DartPad 17 -
1
votes2
answers90
viewsQ: How to dynamically remove all the treble accents contained in a String?
How to dynamically remove all treble accents contained in a String? Example: "solid synthetic sofa". void funcao(String texto) { var resultado = ''; for (var i = texto.length - 1; i >= 0; i--) {…
dartasked Aprendiz DartPad 17