Intuition
Straight forward string matching.
Follow-up: try the problem in a language known for it’s advanced type and value matching syntax such as Rust or OCaml.
Code
Python3
Big O Analysis
-
Runtime
The runtime complexity here is since we are iterating over every item in the list.
-
Memory
The memory usage is since we are not using any extra data structure.
— A