Discover a wealth of knowledge at Westonci.ca, where experts provide answers to your most pressing questions. Explore thousands of questions and answers from knowledgeable experts in various fields on our Q&A platform. Experience the convenience of finding accurate answers to your questions from knowledgeable experts on our platform.
Help!!!
I don't know how to do this problem....
Like
NOTHING
This is all I have right now
```
def findCharacteristic(choice, edges):
edges = edges.replace(" ","")
vertices = edges
max = 0
for char in vertices:
if int(char) >max:
max = int(char)
print (max)
x = [[0]*max]*max
print(x)
if __name__ == '__m
```
