nalla detail ah ithe maari video podunga, romba nandri I was searching for a tamil channel like this you know..
@codemeal Жыл бұрын
Thanks bro ✨️
@noone-fp3ft11 ай бұрын
Thalaivaree Rombaa Nandrii Thalaivareyyyyyy , Lub U Vro
@ScatterShashank18 күн бұрын
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 Жыл бұрын
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-h2e5 ай бұрын
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)
@mrwildmouth58764 ай бұрын
Error: Why are you using 2 else in this code Can u explain please
@JoffrinReffino-s6e3 ай бұрын
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 Жыл бұрын
Hi ...thanks for the content.i have been searching data structures with python but not satisfied. neenga clear ah explain pannuringa thanks
@codemeal Жыл бұрын
Thank you
@melwindaniel961324 күн бұрын
Thanks boss
@SherlockHolmes-rt5ep7 ай бұрын
Hey super nanba :)
@dhilipkumar4394 Жыл бұрын
Queue concept cover pannuga bro
@codemeal Жыл бұрын
Sure bro next athan
@subalakshmip7847 Жыл бұрын
Bro quick sort merge sort podunga
@codemeal Жыл бұрын
Hi, sorry laptop service ku kuduthiruken 10 days aahum, athuku apram videos continuous ah podren,, Really Sorry
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 Жыл бұрын
Sure check pandren. Thank you so much
@rk.sparkles72125 ай бұрын
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)