tamilzRuby naming convensionIn software development, naming conventions often use plurals for certain entities, especially in the context of databases, collections…Oct 23Oct 23
tamilzBest case vs average case vs worst caseBest-case time complexity is the minimum amount of time an algorithm takes for a given input. It represents the most favourable scenario.Oct 10Oct 10
tamilzRuby, you can iterate over a string in various ways depending on whether you want to iterate by…1. Iterating by Characters:Oct 7Oct 7
tamilzCS fundamentalshttps://dev.to/chhunneng/100-computer-science-concepts-you-should-know-2pgkSep 24Sep 24
tamilzDifference between high level design and low level designhttps://www.scaler.com/topics/high-level-design-and-low-level-design/Sep 11Sep 11
tamilzProgram for Most frequency character in a stringfunction mostFrequentChar(str){ const charCount = {} let maxCount = 0; let mostFrequent = ‘’ for(let char of str){…Sep 4Sep 4