Jamie Balfour

Welcome to my personal website.

Find out more about me, my personal projects, reviews, courses and much more here.

ZPE Online

Linear Search by jamiebalfour04

YASS
function linearSearch($item_list$search_item) : number | boolean {
  $found = false
  $index = 0
  $position = -1
  while ($index < count($item_list) and $found == false){
    if ($item_list[$index] == $search_item){
    	$found = true
       $position = $index
    }
    $index++
  }
  if($found){
    print("Item found at position"$position)	
  } else{
    print("Item not found")	
  }
}

function main(){
  $l = [3, 5, 7]
  linearSearch($l, 6)
}

This code was submitted for everyone to view. Please remember to give credit where due. Use the following attribution:

//Written by jamiebalfour04 on 07-04-2023 and shared using ZPE Online

You can run the code by clicking on the 'play' button at the top right of the code or clicking the execute button below.

Syntax highlighting

Syntax highlighting is brought to you by my new Zippidydoda highlighter. This is still in the early stages of beta at present and is built upon the same principles that ZPE's own Zenith Parsing Engine is built upon. You can try it out using this button.

PE
Online