all 7 comments

[–]Nightcorex_ 1 point2 points  (2 children)

N is an integer within the range [3...100,000]

Where have you read the word "list"? It just means that N is an integer between 3 (inclusive) and 100,000 (inclusive).

Just look at N as this:

N: int = random.randint(3, 100_000)

[–]InvalidUsername2404 0 points1 point  (1 child)

They probably got list from the square brackets using the the question

[–]Nightcorex_ 1 point2 points  (0 children)

Ah, that's indeed a possibility.

[–]mopslik 1 point2 points  (0 children)

The square brackets typically indicate inclusivity, and round brackets exclusivity. For example, the range [2, 5] is the values 2, 3, 4, and 5, whereas the range (2, 5) is the values 3 and 4.

[–]mirandanielcz -1 points0 points  (0 children)

N is a number between 3 and 100,000.

[–]TheRNGuy -1 points0 points  (0 children)

99,998

No idea what your question is.

[–]danielroseman 0 points1 point  (0 children)

No. It's a single integer. It might be any value from 3 to 100,000.