vault backup: 2026-01-30 12:29:13

This commit is contained in:
2026-01-30 12:29:13 -05:00
parent c550a212df
commit f3d5c800a4
37 changed files with 1660 additions and 175 deletions
+34
View File
@@ -0,0 +1,34 @@
---
id:
aliases: []
title: 2025-08-26
tags:
- authorship/original
- destiny/permanent
- status/draft
- type/daily
dg-publish: true
---
# 2025-08-26
## 2025-08-26 ??:??
### 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)
```