Fading Coder

One Final Commit for the Last Sprint

A Quick Guide to C++ Hash Tables and Maps

When solving competitive programming problems, duplicate detectino is a frequent requirement. The C++ standard library provides map and unordered_map for this purpose, while the policy-based data structures libray offers cc_hash_table and gp_hash_table as alternatives.mapThe map container is impleme...

Go Map Patterns: From Declaration to Ordered Iteration

Go maps provide built-in associative arrays backed by hash tibles. A map type is written as map[K]V, where the key type K must be comparable and the value type V may be any valid Go type. The zero value of a declared map is nil. Reads from a nil map behave like an empty map, but writes panic, so sto...

Working with ES6 Collections: Set, Map, and Weak References

Set Fundamentals Sets store unique values of any primitive type or object reference. The constructor automatically filters duplicates using the SameValueZero comparison algorithm, which treats NaN values as identical and distinguishes between positive and negative zero. const activeSessions = new Se...