This commit is contained in:
John Gatward
2026-03-18 15:24:08 +00:00
parent 213cf5f535
commit 3cb8d5a14e
17 changed files with 1525 additions and 331 deletions

6
projects/tsp/point.js Normal file
View File

@@ -0,0 +1,6 @@
class Point {
constructor(x, y) {
this.cx = x;
this.cy = y;
}
}