1
Fork 0

update thanks

This commit is contained in:
Motiejus Jakštys 2022-07-01 13:16:47 +03:00
parent 49901fc33e
commit c1818e2736
1 changed files with 6 additions and 5 deletions

View File

@ -51,9 +51,9 @@ Cro][loris] keeps telling the me and The Internet that Zig is not suitable for
coding challenges. Well, after a couple of months of working with him, I can coding challenges. Well, after a couple of months of working with him, I can
finally say he is wrong! Even though my colleagues tell me Zig was tripping me finally say he is wrong! Even though my colleagues tell me Zig was tripping me
(e.g. memory leaks in the unit tests, for which I had to add `defer (e.g. memory leaks in the unit tests, for which I had to add `defer
hash_map.deinit()`), I think this was due to lack of experience in a coding hash_map.deinit()`), I think this was due to lack of experience in a particular
challenge setting. Next time the first thing I will do is construct an area and "coding challenge setting". Next time I will construct an [arena][arena] and be
be done with memory management. done with memory management.
Exercise was taken from [Cracking the coding interview][cracking]: Exercise was taken from [Cracking the coding interview][cracking]:
@ -277,11 +277,12 @@ to code it. The main criteria is, of course, lines of code. :)
## Thanks ## Thanks
Many thanks to Courtney Cox, Mantas Mikšys, Brigita Žemgulytė and Ignas Many thanks to Brigita Žemgulytė, Courtney Cox, Ignas Kaziukėnas and Mantas
Kaziukėnas for making this meetup happen. I would do it again. Mikšys for making this happen. I would do it again.
[loris]: https://kristoff.it/ [loris]: https://kristoff.it/
[meetup-page]: https://www.meetup.com/uber-engineering-events-vilnius/events/286542203/ [meetup-page]: https://www.meetup.com/uber-engineering-events-vilnius/events/286542203/
[jakub]: https://www.jakubkonka.com/ [jakub]: https://www.jakubkonka.com/
[pastebin]: https://paste.mozilla.org/ [pastebin]: https://paste.mozilla.org/
[cracking]: https://www.crackingthecodinginterview.com/ [cracking]: https://www.crackingthecodinginterview.com/
[arena]: https://github.com/ziglang/zig/blob/0.9.1/lib/std/heap/arena_allocator.zig#L6-L7