I have a list :
a = [1,3,5,657,78,43,7,2,123, 43, 321, 4531]
I would like to remove 1 random integer from this list which is greater than 100. How to do this?
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
If you have many numbers superior to 100 in your list, you can just choose one index between the start and the end of the list, then delete it if it's superior to 100, else pick another one. If you don't have many items superior to 100, you should save the elements superior to 100 in an array, choose one of them randomly, then delete it from your original array. |
|||||||||||||||
|
|
|||||||||||||||
|
|
First, get a list of the indices of all elements over 100:
Now pick one from that list:
Now delete that index from the original list:
Putting it all together:
|
|||||||||||||
|
|
Create a list of the index of the integers over 100, pick one of those indices at random then remove that index from the list |
|||
|
|