You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
506 B
21 lines
506 B
7 months ago
|
# File: vertex.py
|
||
|
# Created Time: 2023-02-23
|
||
|
# Author: krahets (krahets@163.com)
|
||
|
|
||
|
|
||
|
class Vertex:
|
||
|
"""Vertex class"""
|
||
|
|
||
|
def __init__(self, val: int):
|
||
|
self.val = val
|
||
|
|
||
|
|
||
|
def vals_to_vets(vals: list[int]) -> list["Vertex"]:
|
||
|
"""Input a list of values vals, return a list of vertices vets"""
|
||
|
return [Vertex(val) for val in vals]
|
||
|
|
||
|
|
||
|
def vets_to_vals(vets: list["Vertex"]) -> list[int]:
|
||
|
"""Input a list of vertices vets, return a list of values vals"""
|
||
|
return [vet.val for vet in vets]
|