Skip to content

Commit a23da8b

Browse files
committed
Add YT link
1 parent 57cdb31 commit a23da8b

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,7 @@ they contain enough code which describes implementation in a natural way.
248248
| Декодирование шифра Цезаря | [Youtube](https://youtu.be/pjQ9sYo5bVE) | [Code](src/main/java/by/andd3dfx/string/CaesarCipher.java) |
249249
| Прохождение теста подтверждения практического навыка "продвинутый" по Java на hh.ru | [Youtube](https://youtu.be/ce3g0nIJl24) | - |
250250
| Поиск НОК для набора чисел | [Youtube](https://youtu.be/jR0Ei_3O7EM) | [Code](src/main/java/by/andd3dfx/numeric/LeastCommonMultiple.java) |
251+
| Число Фробениуса и задача Чикена МакНаггетса | [Youtube](https://youtu.be/itBWtCwWUG4) | [Code](src/main/java/by/andd3dfx/numeric/FrobeniusCoinProblem.java) |
251252

252253
## Materials & notes
253254

src/main/java/by/andd3dfx/numeric/FrobeniusCoinProblem.java

+6-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,13 @@
33
import by.andd3dfx.dynamic.ChangeWithMinNumberOfCoins;
44

55
/**
6-
* See <a href="https://en.wikipedia.org/wiki/Coin_problem">article</a> in wiki
7-
* <p>
6+
* <pre>
87
* Find the largest monetary amount that cannot be obtained using only coins of specified denominations.
8+
*
9+
* See <a href="https://en.wikipedia.org/wiki/Coin_problem">article</a> in wiki
10+
* </pre>
11+
*
12+
* @see <a href="https://youtu.be/itBWtCwWUG4">Video solution</a>
913
*/
1014
public class FrobeniusCoinProblem {
1115

0 commit comments

Comments
 (0)