Open ajogseneca opened 3 weeks ago
Hello! Is this PR ready for review? I see no description.
This PR is associated with Issue #34
@FerdausPolok this PR is ready for review !
@FerdausPolok Do we have a discord for this repo ?
@FerdausPolok Do we have any updates on this PR ?
@FerdausPolok Do we have any updates on this PR ?
requested some changes, sorry for the delay.
@FerdausPolok take a look at the changes, Thankyou
@FerdausPolok can we merge this issue as soon as possible ?, Let me know if you want any more changes thank you !
Jump Search
Jump search is an efficient algorithm designed for searching an element in a sorted array. It works by dividing the array into blocks of a fixed size (jump size), and then checks the elements in increments (or "jumps") of that size. Once it finds a block that contains the target, it performs a linear search within that block.