Remove unnecessary import and comments from sorted_linked_list.py

This commit is contained in:
mjk22071998 2024-10-01 16:00:02 +05:00
parent 9e92e1e825
commit 26b7912d0e

@ -1,11 +1,6 @@
from __future__ import annotations
from dataclasses import dataclass
from typing import Optional
# This is a sorted linked list class that creates
# a sorted linked list of integer datatype
@dataclass