You are viewing a single comment's thread from:
RE: SLC21 Week6 - Programming Games&Puzzles (part 2)
Task | Comment | Grade |
---|---|---|
1. What role do random numbers play in the computer world? How to turn them from "pseudo-random" into more random ones. | Well but briefly explained the essence and role of random numbers | 1/1 |
2. Write a random number generator. Research it. | You have created a good generator, but you still need to test it, or at least mention that the selection of parameters is of great importance, since numbers can "fall out" with an uneven distribution. | 1.4/2 |
3. "Deck of cards" - Find several ways to fill the array 1...N - 1 One way - one point. | The first three "methods" are not worth attention at all)) this is not a coincidence. Then the method with re-selection of the newly generated one is a good method. The next one generates the same numbers - this is not what should be. and the last method - I myself have used it for many years, considered it the best. However, half a year ago I learned about an even better one. | 2.5/5 |
4. Construct a table of the dependence of the number of operations when generating a deck of N cards for your methods | Here it would be necessary to conduct tests for larger quantities - 1K, 10K, 100K, and not theoretically. | 1.1/2 |
Total: | 6/10 |
Thank you for participating.