What is an Algorithm?
An algorithm is a common formula for getting a certain result.
An Algorithm is a Formula
Such as the "formula" below for getting a string reversed (code in JavaScript):
// Problem: Reverse a string
const str = "hello";
// Step 1: split every single ...
blog.cyishere.dev2 min read