This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function float(float $min, float $max): float | |
{ | |
$random = \mt_rand() / \mt_getrandmax() * $max; | |
return \max($random, $min); | |
} | |
function getRandomItem(array $array) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
int log(int a) | |
{ | |
int cnt; | |
while (a > 1) | |
{ | |
a /= 2; | |
cnt++; |