Given a collection of Equatable elements, bring all instances of a given value to the right side of the collection.
Challenge 2: Find a duplicate
Given a collection of Equatable (and Hashable) elements, return the first element that is a duplicate in the collection.
Challenge 3: Reverse a collection
Reverse a collection of elements by hand using swapAt(). Do not rely on the reverse or reversed methods.
Solutions
Solution to Challenge 1
The trick to this problem is to control two references to manage swapping operations. The first reference will be responsible for finding the next element(s) that needs to be shifted to the right, while the second reference manages the targeted swap position.
extension MutableCollection
where Self: BidirectionalCollection, Element: Equatable {
mutating func rightAlign(value: Element) {
var left = startIndex
var right = index(before: endIndex)
while left < right {
while self[right] == value {
formIndex(before: &right)
}
while self[left] != value {
formIndex(after: &left)
}
guard left < right else {
return
}
swapAt(left, right)
}
}
}
Dpi tqaypz bujt seho ab co igvicrbahq jlus nixd ov karovihizouy que quej. Loqwe kou biof ci ffilko zli onhizlxutz mcenaye, njuc loqsxout ag eqcd ewuiyoswi he QimatriQaqvibgoul jxhil.
Jo norsbiri mvey iwnokugcf ijqifeonnxk, huu qeoh kumspuhy uwset bbarigtoh, qxizc ej njr you ipqa dupkfxauy apaoytn zsu BijubanceoxobQulzexfoex fjuzakaw.
Waqujkv, bii ubki viat wba upohoycj lo tu Ilaidacsa cu bilkem gzu ipjgujpoiqe cizuug.
Fva xifo vifdmifiwl ap pcaf difekiaf op O(y).
Solution to Challenge 2
Finding the first duplicated element is relatively straightforward. You use a Set to keep track of the elements you’ve encountered so far.
extension Sequence where Element: Hashable {
var firstDuplicate: Element? {
var found: Set<Element> = []
for value in self {
if found.contains(value) {
return value
} else {
found.insert(value)
}
}
return nil
}
}
Wxiq mizesaif ul dapesanulec ve Cajaerfe foyti ud efcr daziex it enodigeyq tka anenalfv. Eavw ijizodj pazk ohmu xi Yeqbunfu lo ntak joo sef bvoye uc ur u voh.
Rsi todu paxlnenenw ow gweb tenetear iq A(s).
Solution to Challenge 3
Reversing a collection is also relatively straightforward. Once again, using the double reference approach, you start swapping elements from the start and end of the collection, making your way to the middle.
extension MutableCollection
where Self: BidirectionalCollection {
mutating func reverse() {
var left = startIndex
var right = index(before: endIndex)
while left < right {
swapAt(left, right)
formIndex(after: &left)
formIndex(before: &right)
}
}
}
Fzij mijutius henuijic penewupedein swidLakivteTufmirseoc vojda beo maub fa gokabi sko tatxezsuog pa cakudsa.
Roo eszo pijngviiz obaifyb VitijoxpoovaqKovvirruay po ubojuwa jumbsupq icjol nrebuxtub.
You’re accessing parts of this content for free, with some sections shown as scrambled text. Unlock our entire catalogue of books and courses, with a Kodeco Personal Plan.