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 -*- # -*- coding: utf-8 -*-
from collections import deque from collections import deque
from enum import Enum
class State(Enum):
unvisited = 0
visited = 1
class Graph(object): 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