"src/main/webapp/vscode:/vscode.git/clone" did not exist on "5dba088e09b8e93a3666a9b3ae58f2389a1c9379"
Commit e116bd75 authored by cclauss's avatar cclauss Committed by Donne Martin
Browse files

Fix #148: Add State(Enum) to social_graph_snippets.py (#167)

parent 9069993c
# -*- coding: utf-8 -*-
from collections import deque
from enum import Enum
class State(Enum):
unvisited = 0
visited = 1
class Graph(object):
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment