Insertion Sort - Sorting Algorithm - Python - Data Structures & Algorithms - Tamil

  Рет қаралды 9,336

Code Meal

Code Meal

Күн бұрын

Пікірлер: 26
@dineshkumarganesan7658
@dineshkumarganesan7658 Жыл бұрын
nalla detail ah ithe maari video podunga, romba nandri I was searching for a tamil channel like this you know..
@codemeal
@codemeal Жыл бұрын
Thanks bro ✨️
@noone-fp3ft
@noone-fp3ft 11 ай бұрын
Thalaivaree Rombaa Nandrii Thalaivareyyyyyy , Lub U Vro
@ScatterShashank
@ScatterShashank 18 күн бұрын
Super bro super irukku vodeo I liked it very much keep on this work and soon you will the first miles stone that is 100k subs son all the best bro
@rocklinks
@rocklinks Жыл бұрын
Thanks bro i dont know about your channel but google bard recommended your channel Complete Python DSA Video podunga bro youtube la full ah tamil video illai
@Lonewolf-h2e
@Lonewolf-h2e 5 ай бұрын
guys who don't understand the above code use this arr = [7,1,4,5,3,2] for i in range(1, len(arr)): curr = arr[i] for j in range(i, 0, -1): if arr[j - 1] > curr: arr[j] = arr[j - 1] else: arr[j] = curr break else: arr[0] = curr print(arr)
@mrwildmouth5876
@mrwildmouth5876 4 ай бұрын
Error: Why are you using 2 else in this code Can u explain please
@JoffrinReffino-s6e
@JoffrinReffino-s6e 3 ай бұрын
def insertion_sort(arr): for i in range (1 , len(arr)): while arr[i-1] > arr[i] and i >0 : arr[i-1] , arr[i] = arr[i] , arr[i-1] i = i -1 return arr
@nivejai4895
@nivejai4895 Жыл бұрын
Hi ...thanks for the content.i have been searching data structures with python but not satisfied. neenga clear ah explain pannuringa thanks
@codemeal
@codemeal Жыл бұрын
Thank you
@melwindaniel9613
@melwindaniel9613 24 күн бұрын
Thanks boss
@SherlockHolmes-rt5ep
@SherlockHolmes-rt5ep 7 ай бұрын
Hey super nanba :)
@dhilipkumar4394
@dhilipkumar4394 Жыл бұрын
Queue concept cover pannuga bro
@codemeal
@codemeal Жыл бұрын
Sure bro next athan
@subalakshmip7847
@subalakshmip7847 Жыл бұрын
Bro quick sort merge sort podunga
@codemeal
@codemeal Жыл бұрын
Hi, sorry laptop service ku kuduthiruken 10 days aahum, athuku apram videos continuous ah podren,, Really Sorry
@30-rathnakumart60
@30-rathnakumart60 4 ай бұрын
Comments laam paatha enaku mattum thaan purila pola🙃.....konjam slow ah sollunga bro
@siddiqabr7110
@siddiqabr7110 4 ай бұрын
I'm here to
@antonyjoe756
@antonyjoe756 Ай бұрын
😅😂
@mrak2728
@mrak2728 Жыл бұрын
Thala va thala va thala
@codemeal
@codemeal Жыл бұрын
😂🤩❤️
@Surendran.sBscIT
@Surendran.sBscIT 8 ай бұрын
Bro entha company bro neega
@Vinu_Anbarasan
@Vinu_Anbarasan Жыл бұрын
Bro Nenga romba clear ah soli kudukuringa It's be perfect Thank you And I messaged u in Instagram regarding some doubts Please consider that And the telegram link is not applicable Please recheck
@codemeal
@codemeal Жыл бұрын
Sure check pandren. Thank you so much
@rk.sparkles7212
@rk.sparkles7212 5 ай бұрын
we can also do like this la !!! #insertion sort x=[7,1,5,3,0,4,2,6,-1] for i in range(1,len(x)): for j in range(i-1,-1,-1): if x[j]>x[i]: x[i],x[j]=x[j],x[i] i-=1 print(x)
@ajinnija8697
@ajinnija8697 4 ай бұрын
I think this is bubble sort
Что-что Мурсдей говорит? 💭 #симбочка #симба #мурсдей
00:19
小丑女COCO的审判。#天使 #小丑 #超人不会飞
00:53
超人不会飞
Рет қаралды 16 МЛН
Insertion Sort for beginners | Algorithms | Tamil | code io
23:18
code io - Tamil
Рет қаралды 44 М.
Greedy Algorithm - Python - Data Structures & Algorithms - Tamil
27:20
Sorting Algorithms Explained in Tamil
1:04:23
CS in Tamil
Рет қаралды 27 М.
Quicksort In Python Explained (With Example And Code)
14:13
FelixTechTips
Рет қаралды 162 М.
Recursion II - Python - Data Structures & Algorithms - Tamil
18:41