Skip to content

Module Array

Classe Array

class Array:
    def __init__(self, capacity: int): ...
    def insert(self, index: int, value): ...
    def remove(self, index: int): ...
    def get(self, index: int): ...
    def set(self, index: int, value): ...
    def display(self): ...