Understood everything, will do homework of algorithm. Present sir!
@darshanabhuyan5896 Жыл бұрын
sir ur like the saviour seriously to us
@codeitup Жыл бұрын
😊
@Harshitpandey-c2l4 жыл бұрын
Best teacher with best concepts
@codeitup4 жыл бұрын
Thanks a lot Umesh 😊
@shristykumari95037 ай бұрын
Amazing way of explanation thank you so much sir🎉😊
@codeitup6 ай бұрын
Most welcome 😊
@abhimangaur4 жыл бұрын
Your teaching style is very good
@codeitup4 жыл бұрын
Thank you so much Abhiman 😊
@shobhasharma15923 жыл бұрын
Explanation at it's best...👏👏👏
@codeitup3 жыл бұрын
Thanks a ton Shobha!
@vidyaramesh6928 Жыл бұрын
Legend's cover whole syllabus at one day before the exam at 2x😂😂😂
@Study.Zone.With.Deepak4 жыл бұрын
We are very appreciative for your video
@codeitup4 жыл бұрын
Thanks a ton!😊 Deepak
@vipersquad55603 жыл бұрын
sir, please make a video on writing algorithms
@saqlainhussain22562 жыл бұрын
Best explanation sir👏👏👏
@codeitup2 жыл бұрын
Thanks😊
@atharvaghogale26829 ай бұрын
best than code with harry oanand sir explains in deep , harry just give overview
@badalkumar-ck1hj3 жыл бұрын
i understand this video very well sir Thanks Teacher 🙏🏼🙏🏼🙏🏼🙏🏼🇮🇳🇮🇳🇮🇳🇮🇳
@codeitup3 жыл бұрын
Always welcome Badal!
@vaibhavpatharkar67942 жыл бұрын
Sir you teach very nicely . But pl explain indentations while writing programs.
@munendrakumar33222 жыл бұрын
Completed my linear search question just after watching it once.........
@codeitup2 жыл бұрын
😊👍
@ritikamittal1770 Жыл бұрын
@@codeitup sir pls make video on algorithm also
@manishprajapati14592 жыл бұрын
n=eval('enter a list') element=int(input('enter a element')) if element in n: print('found') print('index:',n.index(element)) else: print('Not found')
@abhishekkaran12052 жыл бұрын
The no 2 position is should be 1 because list start with 0,1,2 and so on
@nazishkhan25872 жыл бұрын
Thank you so much sir u r explanation is very good
@codeitup2 жыл бұрын
Thanks & most welcome Nazish!
@amaritanshigupta52712 жыл бұрын
very grateful vedio's
@codeitup2 жыл бұрын
Thanks Amaritanshi!
@adityagupta89014 жыл бұрын
Amazing explanation sir
@codeitup4 жыл бұрын
Thanks a lot Aditya 😊
@vanshrajsingh54062 жыл бұрын
Very nyc sir
@codeitup2 жыл бұрын
Thanks Vansh!
@manjushavarunnair28352 жыл бұрын
Sir algorithum b explain kr dijiye
@LALITGOSSIPS2 жыл бұрын
Nice
@codeitup2 жыл бұрын
😊
@aravind98113 жыл бұрын
import numpy as np def linearsearch(arr, key ,size ): flag = 0 for i in range(size ): if arr[i] == key: flag == 1 pos = i+1 break if flag == 1: print("valu found at position ",pos, "position ") else: print("valu not found") a = [] size = int(input("enter the size of an array ")) for i in range(size): valu = int(input("enter the valu ")) a.append(valu) arr = np.array(a) key = int(input("enter the value to search ")) linearsearch(arr, key , size ) not get proper output sir
@codeitup3 жыл бұрын
Just do: flag=1
@aravind98113 жыл бұрын
@@codeitup thank you sir
@vershitayadav77533 жыл бұрын
l=[34,56,12,66,90,34,2,3,67,12] length=len(l) key=int(input("Enter the key to search:")) for i in range(0,length): if l[i]==key: print("found",l[i]) print("index is", i) break elif l[i]!=key: print("not found") break else: pass sir i did it in this way but every time when the i is going in elif it is printing "not found" until i is matched. what should i change in it to make it print "not found" only once. moreover, it is not finding the correct i. always show "not found"
@sheikhmuktadir2603 жыл бұрын
Thank you so much sir
@codeitup3 жыл бұрын
Thanks dear !
@abhimangaur4 жыл бұрын
Thank you sir ji
@codeitup4 жыл бұрын
Most welcome Abhiman. During Premier you can join live chat as well.
@riturajraman.4 жыл бұрын
good Evening Sir, Sir, if you use GitHub, then please make a video on "How to use GitHub" with a full explanation. It's a humble request.
@codeitup4 жыл бұрын
Sure Rituraj !
@riturajraman.4 жыл бұрын
@@codeitup Thank you, sir!
@riturajraman.4 жыл бұрын
@@codeitup But make a detailed video...🙏🙂
@sagarpandey27624 жыл бұрын
Sir pz fast videos upload kar dijiye pz aur kuch practice example bhi dai dijye pz . By the way I am your new subscriber .
@codeitup4 жыл бұрын
Will try my best Sagar !
@sakshisingh783 жыл бұрын
Thanks sir 🥰
@codeitup3 жыл бұрын
Most welcome Sakshi!
@sakshisingh783 жыл бұрын
@@codeitup 🥰🥰
@whitesidehacker74394 жыл бұрын
Best teacher of computer . Please come to my school and teach us , sir 😊😊😊😊😊😊😊😊😊😊😇😇😇😇😇😇
@codeitup4 жыл бұрын
Say your principal to call me and decided the CTC 😜
@punitbohra17712 жыл бұрын
what happen when a number is two times in a list ? Then linear search what will givethe position of that particular ? for eg- [12,3,4,8,23,55,23,41,8,65] in this situation what will be the position of the no 8 Please ans this with reason.
@JEEAspirant-on9wp Жыл бұрын
It will give the first index where the number is present as once the number is found the loop breaks and hence it won't search further
@JEEAspirant-on9wp Жыл бұрын
Position of 8 will be i+1=3+1=4
@atharvaghogale26829 ай бұрын
tommorw computer paper "phood denge"(prasant kirad bhaiya)
@helloo88383 жыл бұрын
Plz reply 👇 Concept mujhe smjh aa jata hai ...I mean theory☺️ But in partical part I understand nothing ....😓😓😓😓😓 Practical krte time hamesha output me error aa jata hai 🤪🤪 Actually I don't know how many spaces should I give .... Capital letter or small letter ... Which one I should use... I don't know 😣😣😣😣....
@exmephistoop37143 жыл бұрын
Kuki hmse usr se size pucha to use to apbe size tk no. Entr krne honge
@rollercoaster97194 жыл бұрын
Sir preboards aane wale h ise plzz next 5-6 days me daal dijiye giving it preferece rather than sql plz sir
@codeitup4 жыл бұрын
Sure Himanshu, I will try my best.
@exmephistoop37143 жыл бұрын
Sir range me size+1 lena chahiye tha shayd
@codeitup3 жыл бұрын
By default 0 se start hota hai islie size+1 karne ki jarurat nahi padti..
@Ajaykumar-kx9su4 жыл бұрын
Thank you sir Yesterday I requested for this video And I got it today🙏🙏
@codeitup4 жыл бұрын
Keep Learning !
@rapjaws_yt2 жыл бұрын
sir mene ye linear search wala program apne system me run kiya but kuch bhi show nhi kr rha
@thevardhana25373 жыл бұрын
What if a list containing single element at multiple positions ?
@mytrollscollection9375 Жыл бұрын
it will print the position of 1st time the num occured in list if the same num repeated again its position will not be printed
@itzpkg4 жыл бұрын
👍👍👍👍👍
@codeitup4 жыл бұрын
😊
@Kahana_sakhii4 жыл бұрын
Sir...agr m codeitup ki memership join krun joh kya fyda hoga usme???
@codeitup4 жыл бұрын
You will support my free education to all campain. Further, I will provide you the complete 12th Notes.