You always doing the best for us ,my greatest tutor ,we really thank you ,we love your work
@AmulsAcademy3 жыл бұрын
Thank you 😊❤️
@Arvindh-xp1lt3 жыл бұрын
excellent videos mam tank you soo much before i thought DSA is hard you made it easy and changed my career thank you soo much mam
@AmulsAcademy3 жыл бұрын
Glad to hear that 😊
@KK7155.3 жыл бұрын
Thank you so much Amulya. You are my favorite teacher. 😊
@AmulsAcademy3 жыл бұрын
Thank you 😊
@bhaskarchauhan63143 жыл бұрын
from last 3 days I watched your tutorials on DS from video 1 and now I am at 25th video.. today I feel like yesturday it was 23/68 and today 25/70 .. hehehe YOUR VIDEO LECTURES ARE AWESOME thanks mam..
@AmulsAcademy3 жыл бұрын
Thank you 😊
@ganeswarreddy40303 жыл бұрын
def delete(v1): global count o=node.index(v1) for i in range(count): for j in range(count): if o==j: graph[i].pop(j) count=count-1 graph.remove(graph[o]) node.remove(v1)
@johnsonabel57083 жыл бұрын
Great. Please do video on Big O notations
@AmulsAcademy3 жыл бұрын
Will try 😊
@priyanshverma53712 жыл бұрын
Why are you not uploading new videos
@adishjain54122 жыл бұрын
hello mam probably you have forgotten to write a method for deletion of a row of graph def delete_node(v): global node_count if v not in node: print('v is not present in graph') else: index1=node.index(v) node_count=node_count-1 node.remove(v) *****graph.pop(index1) for i in graph: i.pop(index1) thank you for your tutorial🙂
@selvanm28723 жыл бұрын
👍👌
@AmulsAcademy3 жыл бұрын
Thank you 😊😊
@ashishmishra78293 жыл бұрын
Ma'am you never made video on project
@AmulsAcademy3 жыл бұрын
Sorry, after completing DS series, I will upload videos on that 😊
@bujjiravi95103 жыл бұрын
list1=['a','b','c','d'] for i in list1: add_node(i) add_edge('a','b') delete_node('d') hello mam , Can you pls tell me y its showing POP INDEX OUT OF OF RANGE error when I use for loop for adding nodes to the graph ?????/
@AmulsAcademy3 жыл бұрын
Pop index out of range, may be something wrong in the deletion function 😊
@bujjiravi95103 жыл бұрын
@@AmulsAcademy but i wrote the code that u taught in this vdo ,mam :/