7 kyu
Create 10x10 array and randomly fill each cell with "A", "B", "C", or "D"
382maliknur
Loading description...
Arrays
Fundamentals
View
This comment has been reported as {{ abuseKindText }}.
Show
This comment has been hidden. You can view it now .
This comment can not be viewed.
- |
- Reply
- Edit
- View Solution
- Expand 1 Reply Expand {{ comments?.length }} replies
- Collapse
- Spoiler
- Remove
- Remove comment & replies
- Report
{{ fetchSolutionsError }}
-
-
Your rendered github-flavored markdown will appear here.
-
Label this discussion...
-
No Label
Keep the comment unlabeled if none of the below applies.
-
Issue
Use the issue label when reporting problems with the kata.
Be sure to explain the problem clearly and include the steps to reproduce. -
Suggestion
Use the suggestion label if you have feedback on how this kata can be improved.
-
Question
Use the question label if you have questions and/or need help solving the kata.
Don't forget to mention the language you're using, and mark as having spoiler if you include your solution.
-
No Label
- Cancel
Commenting is not allowed on this discussion
You cannot view this solution
There is no solution to show
Please sign in or sign up to leave a comment.
JS fork which resolves the suggestion below + attempts to resolve the issue about the rows having the same beginning UPD: proper fix to the latter part has been implemented
approved
NodeJS version is too old (v8.1.3), it's recommended to upgrade it to v18, as well as testing framework to mocha/chai
updated
For all who could stumble here on this old exercise, test don't check for true randomness. You HAVE to have at least one of each letter in result array.
Ahh, I wish I read this before I attempted to hammer the solution with randomness.
The top voted solution is not random.
Each row starts with
['A','B','C','D',...]
. I suggest adding a test like the one below, which catches the case where at least one column is all the same letter. This happens only 10 out of 4^9 = 262,144 times (0.004% odds) in a truly random array. So the vast majority of the random arrays should still pass with this new test in place.Resolved with this update
Doesnt seem so random if the first 4 elements are ABCD in all the arrays
Your babel presets doesn't contain String.prototype.repeat method. So I cannot pass tests with my solution :(
Approved
I'm confused run test is ok but submit have lots of error even the array length...
If you post your solution below and mark it as a spoiler we can help you debug your issue :)
If you can't fix these issues below by yourself, I'd be happy to give you a hand! :)
sorry was a bit busy, pls if you can and have a time, it's my pleasure if you can help
Done
Seems to be no test to enforce the randomness of the arrays.
Added more advanced tests, please mark issue as resolved :)
resolved
more precise testing needed
Added more advanced tests, please mark issue as resolved :)
Sure, thanks!
There is a spelling/typo mistake in your problem outline...
Create 10x10 array and randomly WILL each cell with
I'm assuming WILL should be FILL
Good catch, fixed.
Typo fixed please mark as resovled :)
resolved
Should contain tests when the solution is called twiced and a test is made so that the solutions are not the same (to test randomness).
Added more advanced tests, please mark issue as resolved :)
resolved
Please add more random tests to ensure all cells contains all needed letters.
Added more advanced tests, please mark issue as resolved :)
resolved