#!/usr/bin/env python3 # @author 轩辕龙儿 # @date 2022/3/1 # @file ListNode.py class ListNode: def __init__(self, x): self.val = x self.next = None