Posts by Gabriel C • 55 points
2 posts
-
3
votes2
answers119
viewsQ: Search an array (list list)
Write a function called busca that receives a matrix (each row of the matrix has four entries, representing the information related to name, registration, sector and phone) and do a search by…
-
2
votes1
answer347
viewsQ: Calculate the average of a matrix
I was trying to calculate the average of a matrix without using numpy, but n managed to get to the desired algorithm def mediah(matriz:List): soma = 0 for linha in matriz: for aij in linha: soma +=…