codinasion-archive / codinasion-dsa

An open source codebase for sharing programming solutions for Data Structures and Algorithm (DSA) problems
https://codinasion.vercel.app/dsa/
MIT License
5 stars 31 forks source link

Write a PHP programme for Linear Search. #64

Closed harshraj8843 closed 2 years ago

harshraj8843 commented 2 years ago

Description

Write a programme for Linear Search.

Input  : 10 20 80 30 60 50
Target : 30

Output : 3

Code of Conduct

glunkad commented 2 years ago

Hey @harshraj8843 , I'm interested in contributing to this issue, so before I start working on it, would you mind sparing your time explaining what the issue is about and pointing me to some resources to get started.

harshraj8843 commented 2 years ago

Hey @9gl

Thanks for showing your interest 😃


Programme description : Given a list of integers, we have to find the index of the target value

🔗 Resources