If you know me, you know I love to play around with silly ways to solve problems with programming languages. Today is no different! This time, let's see how many ways we can add two numbers in...
Tag: Data Structures
Flexible Interfaces With Optional Methods Are Good: A Java List Case Study
Software design is hard, but we sometimes make it harder on ourselves. Why not adopt a more flexible approach to allow for nuance?
Comparing strings in Java is always a nightmare, but did you know using == can sometimes work? Yeah, say hello to more nightmare fuel.
Did you know you don't have to deal with those nasty tuples from sqlite. Try converting the data to actual Python objects!
Mutability is a concept that everyone stumbles upon at some point in their programming career. so I figured I'd give a quick overview of what it is.
Indexing arrays is always a confusing topic. After all, the average person starts counting from one, so why don't arrays?