Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add solution #352

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open

add solution #352

wants to merge 4 commits into from

Conversation

HolyRaveOS
Copy link

No description provided.

Comment on lines 10 to 19
const getRandomNum = () => {
return Math.floor(Math.random() * 9000) + 1000;
};

function generateRandomNumber() {
/* Write your code here */
let res;

do {
res = getRandomNum();
} while (new Set(String(res).split('')).size !== 4);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Try to make up better logic for generating random number, because now this loop can be repeated a lot of times

@HolyRaveOS HolyRaveOS requested a review from Moroz-Dmytro April 5, 2024 14:28
Copy link

@BudnikOleksii BudnikOleksii left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants