Update and rename circular_queue.py to circular_queue_array.py

This commit is contained in:
marina 2023-08-07 18:05:15 -07:00 committed by GitHub
parent 3d361330b7
commit 71ca605489
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,6 +2,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# author: bt3gl # author: bt3gl
class CircularQueue: class CircularQueue:
def __init__(self, k: int): def __init__(self, k: int):