Type Aliases
Creating type shortcuts
Interview Relevant: Code readability
Type Aliases
Code Examples
python
1Vector = List[float]
2def scale(v: Vector, factor: float) -> Vector:
3 return [x * factor for x in v]Creating type shortcuts
1Vector = List[float]
2def scale(v: Vector, factor: float) -> Vector:
3 return [x * factor for x in v]Ask about the topic