Summary:
I don't really want to speak about today. I am more aware about the ownership model, I am getting more comfortable with iterators and I know which method I should use when I work with Collections.
Rust by Practice
- 10.1: Generic and Traits - generics
- 10.2: Generic and Traits - const generics
- 10.3: Generic and Traits - traits
- 10.4: Generic and Traits - trait objects
- 10.5: Generic and Traits - advanced traits
- 11.1: Generic and Traits - string
- 11.2: Collection and Types - vector
- 11.3: Collection and Types - hash-map
EliteCode
- Solved the TTL Cache Problem. I made the assumption that
we can go back in time, as the platform provided me with delta which is a signed integer. This means, that
I cannot just delete the data that we know have expired. Otherwise, the major chunk of the work could be
done by the
tickfunction and we would keep the data field as having the only information.