Posts by João Matheus • 1 point
2 posts
-
-3
votes1
answer110
viewsQ: print the smallest lexicographically possible string that can be obtained by removing at most 1 character from the string
I will receive an integer number and a string``; I will have q print the smallest lexicographically possible string that can be obtained by removing at most 1 character from the string. I found some…
python-3.xasked João Matheus 1 -
-1
votes1
answer20
viewsQ: Matrix list-to-list conversion doesn’t even work using numpy, how could I be doing this conversion?
import numpy as np X = 10 matriz = [] for i in range(X): matriz.append([]) for l in range(0,X): for c in range(0,1): …
python-3.xasked João Matheus 1