ANTON KADACH

Generation

time complexityWed, 15 Mar 2023

Определить координаты

class Vector { var x; var y; } function findVector(a, b) { var vector = new Vector(); vector.x = b.x - a.x; vector.y = b.y - a.y; }

Want to kickstart your project?Use the new AI Studio to create your code