forked from zdiyax/onetech-golang-syllabus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Zhannur Diyas
committed
Jul 3, 2019
1 parent
a21f06a
commit e5c69be
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
### Дополнительное задание #2 | ||
|
||
------------------------ | ||
|
||
* Реализовать Bubble Sort для int'ов. Протестировать на массивах разной длины, при этом фиксировать затраченное на сортировку время. Как это сделать читайте в документации [тут](https://golang.org/pkg/time/) | ||
|
||
Определить временную сложность вашего алгоритма О(n) | ||
|
||
---------------------------- | ||
* Реализовать колоду игральных карт. Карта должна иметь номинал и масть (пример: восьмерка треф) | ||
|
||
Также необходимо реализовать метод shuffle(), который будет перетасовывать вашу колоду карт. | ||
|
||
______ |