Implementing a Hash Map in Golang31 October 2020·525 words·3 minsDevelopment Algorithms GOImplementing a simple hash function algorithm and creating our own hashmap to better understand data structures.
Why You Should Avoid the Else Operator30 August 2020·457 words·3 minsDevelopment Clean CodeWhat dangers does the else operator imply? Why is it bad to abuse it, and why is it better to avoid it in most cases?
Why You Don't Need the Switch/Case Operator23 August 2020·1641 words·8 minsDevelopment Clean CodeSurprisingly, programmers write programs for other programmers, not for machines. Therefore, code should be clean, concise, and simple.