python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to write Pseudocode for Random Password Generator created using Python?
I need to write a pseudocode for the random password generator below. How do I write a pseudocode Do help me out. Thank you.
import random
import string
print('hello, Welcome to Password generator!')...
Drika
Votes: 0
Answers: 2
How to round to an arbitrary (non power-of-ten) precision
Let’s imagine I would like to round a number (i.e x = 7.4355) to a given arbitrary precision (i.e p = 0.002). In this case, I would expect to see:
round_arbitrary(x, p) = 7.436
What would be the best...

Magix
Votes: 0
Answers: 1
how does bitcoin prevent double-spending?
can someone help me create a Pseudocode that shows how bitcoin prevents double-spending?
here is my code (with some help of https://www.sofi.com/) :
This program is to prevent double-spending:
Person...
AloneWolf
Votes: 0
Answers: 1
Simple algorithm for a simple balancing problem
I have three buckets. They do not contain the same amount of water and they can contain up to 50 liters each.
Now I want to add more water to the buckets. This amount may vary from time to time, and m...
NorwegianClassic
Votes: 0
Answers: 1