Understanding Big O Notation : Exploring Linear Time Complexity
Mar 26, 2023 · 3 min read · Introduction In the previous section, we already discuss Constant Time in Big O Notation, now I am gonna show you what is Linear Time in Big O Notation. Okay lets go into the coding section: fun main() { var listOfItem = arrayListOf<String>("plat...
Join discussion