Beat the RNG - Passwords - MATLAB Cody - MATLAB Central

Problem 46585. Beat the RNG - Passwords

Difficulty:Rate
The Test Suite randomly generates a list of 1024 passwords.
Given the source code and one generated password, return the complete list of all passwords.
% Password generator source code
rng('shuffle')
alphanum = ['a':'z' 'A':'Z' '0':'9'];
passwords = string(alphanum(randi([1 length(alphanum)], [1024 6])));
rng('shuffle')
Continuation of Problem 46568.
Read the manual. >:)
help randi
help rng

Solution Stats

32.0% Correct | 68.0% Incorrect
Last Solution submitted on Jul 01, 2024

Problem Comments

Solution Comments

Show comments
R2025a Pre-release highlights
This topic is for discussing highlights to the current R2025a Pre-release.
13
5

Problem Recent Solvers6

Suggested Problems

More from this Author4

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Go to top of page