Update detect_cycle.py

This commit is contained in:
marina 2023-08-02 19:19:38 -07:00 committed by GitHub
parent 3d5ed34eab
commit e085d74110
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# author: bt3gl # author: bt3gl
class tNode: class Node:
def __init__(self, val): def __init__(self, val):
self.val = val self.val = val