Posts by Bruno Rodrigues • 25 points
4 posts
-
-1
votes1
answer49
viewsQ: Doubt when returning the amount of different letters
I would like to return the amount of different letters between the two strings, in this case the different letters are "TACG" and "ARGC", soon would have to return 4. ruby def letras(string_1,…
rubyasked Bruno Rodrigues 25 -
2
votes3
answers534
viewsQ: Escada Javascript
"use strict" let array = [] function exibeNumero(entrada) { for (let i = 0; i < entrada; i++) { array.push("#".repeat(i)) } for (const entrada of array) { console.log(entrada) } } exibeNumero(10)…
javascriptasked Bruno Rodrigues 25 -
0
votes1
answer28
viewsQ: Problem in Table Insertion
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Numero par</title> <link rel="stylesheet"…
-
0
votes1
answer32
viewsQ: Problem when displaying the highest and lowest note
HTML <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <input type="text" id="entrada"…