Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
better-wp-security
/
vendor-prod
/
bjeavons
/
zxcvbn-php
/
src
/
Math
:
BinomialProvider.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * @license MIT * * Modified using Strauss. * @see https://github.com/BrianHenryIE/strauss */ declare(strict_types=1); namespace iThemesSecurity\Strauss\ZxcvbnPhp\Math; interface BinomialProvider { /** * Calculate binomial coefficient (n choose k). * * @param int $n * @param int $k * @return float */ public function binom(int $n, int $k): float; }