vault backup: 2025-08-26 16:44:37

This commit is contained in:
2025-08-26 16:44:37 -04:00
parent b7b6657435
commit 502faeaca1
4 changed files with 124 additions and 22 deletions
+19
View File
@@ -0,0 +1,19 @@
# Pathfinding
```c
struct point {
double x
double y
}
struct point p1;
p1.x = 1.0d;
p1.y = 3.0d;
struct point p2;
p1.x = 4.0d;
p1.y = 6.0d;
// ??? = Pathfinder.Taxicab(p1, p2)
```