Posts by 형사씨 • 41 points
3 posts
-
0
votes0
answers9
viewsQ: Excution permission for ```Tsc -v``` in Powershell
I’d like to execute the command tsc in Powershell, however, when I run the command it returns powershel permissions error, however, instead of the permission to run using the Set-ExecutionPolicy and…
-
0
votes1
answer30
viewsQ: How to include a value in a matrix by separating a digit in each column?
I developed a program that, when informing a value, this value is allocated in all columns of the row, returning me an array like this: array([[0, 0, 0], [233, 233, 233], [0, 0, 0], [0, 0, 0], [0,…
-
3
votes2
answers639
viewsQ: Generate random numbers in 2d numpy array without repeating Python
Good afternoon, I’m trying to generate a 2d numpy array without repeating numbers. My code: TAMANHO = 4 tabela= np.zeros((TAMANHO, TAMANHO), dtype = int) tabela[:, 0] = np.random.randint(1, 170,…