Left Sidebar
Showing posts with the label searchingShow all
Interview Questions on searching in arrays
Champak Roy
Saturday, November 08, 2025
🔎 Searching inside Arrays 🔍 Introduction to Searching Inside Arrays Arrays are one of the most fundamental data structures in programming—like shelves that hold items in…
Learning Sorting
Champak Roy
Wednesday, October 29, 2025
Learning Sorting Selection Sort Take an array as input and print it using a loop. a=[11,2,4,3,12] Find the smallest element and print it. 2 Find the position of the smallest number and print it.…