146k views
3 votes
"1. Change the method getRandomNumberArray. It

should return an array that includes n uniformly random, odd
numbers that are greater or equal to 10 million and less than 500
million. §"

User Jackssn
by
7.8k points

1 Answer

2 votes

Final answer:

To change the method getRandomNumberArray to return an array of uniformly random odd numbers between 10 million and 500 million, we can use a loop to generate random numbers within this range and check if they are odd. If they are, we add them to the array until we reach the desired length.

Step-by-step explanation:

In order to change the method getRandomNumberArray, we need to ensure that the returned array includes n uniformly random, odd numbers, which are greater than or equal to 10 million and less than 500 million. One way to achieve this is by using a loop to generate random numbers within this range and checking if they are odd. If they are odd, we can add them to our array until we reach the desired length.

Here is an example implementation in Python:

import random

def getRandomNumberArray(n):
numbers = []
while len(numbers) < n:
num = random.randint(10000000, 499999999)
if num % 2 != 0:
numbers.append(num)
return numbers

print(getRandomNumberArray(8))

User Jagb
by
7.9k points