-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DZ #2
base: develop
Are you sure you want to change the base?
DZ #2
Conversation
7-converter/app.js
Outdated
@@ -0,0 +1,22 @@ | |||
// Совершенно не понял как сделать это, пытался прогуглить, но там уже более сложные примеры и варианты решения подобной задачи. Направьте, пожалуйста, какое решение применить? | |||
|
|||
function summ (amount, sourceCurrency, targetCurrencyUSD, targetCurrencyEUR ) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- 3 - параметра (сумма, из какой валюты, в какую валюту)
- Далее внутри функции у тебя должны быть коэффициенты для перевода валюты из одной в другую
switch (initialCurrency) {
case 'RUB': switch (targetCurrency) {
case 'USD': return amount / 89.7619;
case 'EUR': return amount / 97.9126;
case 'GBP': return amount / 113.6027;
default: return null;
}
case 'USD': switch (targetCurrency) {
case 'RUB': return amount * 89.7619;
case 'EUR': return amount * 0.9168;
case 'GBP': return amount * 0.7901;
default: return null;
}
case 'EUR': switch (targetCurrency) {
case 'RUB': return amount * 97.9126;
case 'USD': return amount * 1.0908;
case 'GBP': return amount * 0.8619;
default: return null;
}
case 'GBP': switch (targetCurrency) {
case 'RUB': return amount * 113.6027;
case 'USD': return amount * 1.2656;
case 'EUR': return amount * 1.1602;
default: return null;
}
default:
return null;
}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Теперь понял, благодарю!
8-crypto/app.js
Outdated
console.log(fullPassword); | ||
|
||
|
||
// Как в массиве сделать перестановку символов местами без их удаления и вернуть потом обратно? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ну можешь циклом for бежать по массиву) метод сплайс мутирует твой массив исходный, из за этого у тебя баги
9-sort-loops/app.js
Outdated
@@ -0,0 +1,35 @@ | |||
const arr = [1, 40, -50, -20, -10, 5, 0, 100]; | |||
|
|||
function sort(arrayOfSort) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
вообще не верно решил))) в чем смысл программирования? в автоматизации) а теперь представь что у тебя миллион элментов в массиве?)
https://proglib.io/p/bubble-sort - почитай про алгоритм сортировки)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍🏻
7 - converter
8 - crypto
9 - sort-loops