Posts by board11 • 63 points
4 posts
-
2
votes1
answer176
viewsQ: Profundidade Array
I have an a1 Array a1=[a2[a3[a4[]],a5]] I need to know the depth of the array now in this case is 3 because inside the a1 array has the a2 array and inside the a2 has the A3 and inside the A3 has…
-
0
votes2
answers4662
viewsA: Check repeated character and value in string array
Repeat part I solved so(with the help of a user who posted here): int i = 0; int j = 0; boolean find = false; while (i < autores.length && find == false) { j++; while (j <…
-
1
votes2
answers4662
viewsQ: Check repeated character and value in string array
I have an array of strings String[] jt = { "João Mendonça", "Mário Andrade", "João Mendonça"}); What’s supposed to be check out if the array contains at least one letter character and that has no…
-
2
votes5
answers18470
viewsQ: delete repeated values java array
I’m trying to print an Array without repeats, which means I have: ja={1,2,3,3,4,5,6,6,8,9}; and the result will be: jaresul={1,2,3,4,5,6,8,9} ideas?…