This repository has been archived on 2023-11-29. You can view files and clone it, but cannot push or open issues or pull requests.
Uloz.to-rychle/tools.ts

3 lines
120 B
TypeScript

export function random_int(from: number, to: number): number {
return Math.floor((Math.random() * to+1-from) + from);
}