#!/bin/python3 import math import os import random import re import sys class SinglyLinkedListNode: def __init__( self , node_data): self .data = node_data self . next = None class SinglyLinkedList: def __init__( self ): self .head = None self .tail = None def insert_node( self , node_data): node = SinglyLinkedListNode(node_data) if not self .head: self .head = node ...
This blog has content related to python programing language and Automation with python and hacker rank solutions , leet code solution