← Back

Code Challenge 3.2 - Sample Data Generator 📊


Objective

Create a program that generates large sets of random numeric data. This data can be used for testing algorithms or automating data entry during debugging. The user can choose to copy and paste the data into an application or save it to a file.

Skills to Practice

Challenge Tasks

Bonus Challenge

Sample Output

Enter the minimum number: 1 [Enter]
Enter the maximum number: 100 [Enter]
How many data points to generate: 10 [Enter]
Do you want the data sorted? (yes/no): yes [Enter]

Generated Data: 
2, 5, 18, 23, 34, 45, 56, 67, 89, 100
``