Commit ac7cd519 authored by Pokala Mohith's avatar Pokala Mohith

add basic implementation

parent d500ff38
a.out
searching.exe
\ No newline at end of file
#include "main.cpp"
bool search_custom(vector<int> a,int num){
for(int i=0;i<a.size();i++){
if(a[i]==num)
return true;
}
return false;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment