Section 2. Chapter 2
single
Challenge: Translation
Swipe to show menu
Task
Swipe to start coding
Translate a polygon by a given vector.
Given a polygon represented as a list of (x, y) tuples and a translation vector (dx, dy), create a new list of tuples representing the translated polygon.
- For each point in
polygon, addvector[0]to the x-coordinate andvector[1]to the y-coordinate. - Return a new list containing all the translated points.
- The function must not modify the original
polygonlist.
Solution
Everything was clear?
Thanks for your feedback!
Section 2. Chapter 2
single
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat