-
The Fizzbuzz Challenge in JavaScript
When we talk about a problem that’s very common in an interview, we assume we already know how to code and solve it. We can discuss some of the most popular problems, like the fibonacci algorithm, plenty of sorting algorithms, etc. and that’s a true thing. We surely don’t know...
-
Quick Introduction of Time Complexity for Algorithms
Programming is like a cooking recipe. There’s a set of instructions in which, you need to follow to solve an specific problem, or to perform a task. And each task in this case, will conform the whole cooking recipe. Wanna make a pizza? You need some ingredients (Which from now,...
-
Basic Documentation for Async Programming in Python
When a programmer is writing some code, usually is noted that a function requires to be executed, making this code synchronous. Here’s a basic example. # Add 2 numbers def sum_numbers(x, y): return x + y def main(): x, y = 4, 5 print(sum_numbers(x, y)) main() In this example, the...