SwiftFMI / swift_2019_2020

7 stars 7 forks source link

Домашно 2 #7

Open yavorp opened 4 years ago

yavorp commented 4 years ago

Примерът за задача 4 трябва да е така, защото това, което сте предоставили не ми се получи и тествах с примера по-долу, получи се и в системата минаха всички тестове. List(List(2, 2), 21, List(3, List(5, 8))).flatten();

heitara commented 4 years ago

Какво точно не се получава, когато има Any?

yavorp commented 4 years ago

Получи се когато има Any, а не когато е с лист от Int

На пт, 5.06.2020 г., 20:18 ч. Emil notifications@github.com написа:

Какво точно не се получава, когато има Any?

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/SwiftFMI/swift_2019_2020/issues/7#issuecomment-639644785, or unsubscribe https://github.com/notifications/unsubscribe-auth/AEF2ZXKLQIVT6C27FXCDEGDRVESHBANCNFSM4NTO6KHA .

yavorp commented 4 years ago

List от Int беше даден в примера

На пт, 5.06.2020 г., 20:29 ч. Yavor Petkov yavorp.98@gmail.com написа:

Получи се когато има Any, а не когато е с лист от Int

На пт, 5.06.2020 г., 20:18 ч. Emil notifications@github.com написа:

Какво точно не се получава, когато има Any?

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/SwiftFMI/swift_2019_2020/issues/7#issuecomment-639644785, or unsubscribe https://github.com/notifications/unsubscribe-auth/AEF2ZXKLQIVT6C27FXCDEGDRVESHBANCNFSM4NTO6KHA .

heitara commented 4 years ago

Това е примера:

List<Any>(List<Int>(2, 2), 21, List<Any>(3, List<Int>(5, 8))).flatten()

List(2, 2, 21, 3, 5, 8)