create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| function giveMyMoney(money, coins) { | |
| let needCoins = [], minCoins = []; minCoins[0] = 0; | |
| // перебираем все суммы до заданной суммы (можно начать с мин.купюры) | |
| for (let sum = 1; sum <= money; sum++) { | |
| // по умолчанию эта сумма не для выдачи | |
| minCoins[sum] = Number.MAX_VALUE; |
| function factorial(userInt) | |
| { | |
| if(userInt===0) | |
| return '1' | |
| if(!userInt) | |
| return '' | |
| var i, nextNumber, carret, |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.
###Array ####Definition: