A
Aaron
I need some help writing this function
the function returns a list of random non-duplicate integers in a string, 1
parameter indicating the maximum range.
string randGen(int maxRange)
maxRange=1000
the output would be:
total of 1000 numbers from 1 - 1000 randomly
2,6,3,423,123,673,23,53...
I know how to write the random number generator part but im having trouble
with the non-duplicate part.
any help is appreciated.
Aaron
the function returns a list of random non-duplicate integers in a string, 1
parameter indicating the maximum range.
string randGen(int maxRange)
maxRange=1000
the output would be:
total of 1000 numbers from 1 - 1000 randomly
2,6,3,423,123,673,23,53...
I know how to write the random number generator part but im having trouble
with the non-duplicate part.
any help is appreciated.
Aaron