mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-11-09 19:40:48 -05:00
Merge pull request #72 from tensorush/my-branch
Fix exercises 058 and 081 🔧
This commit is contained in:
commit
cd2f9b8007
2 changed files with 2 additions and 2 deletions
|
@ -191,7 +191,7 @@ const TripItem = union(enum) {
|
||||||
// The Hermit's Notebook is where all the magic happens. A notebook
|
// The Hermit's Notebook is where all the magic happens. A notebook
|
||||||
// entry is a Place discovered on the map along with the Path taken to
|
// entry is a Place discovered on the map along with the Path taken to
|
||||||
// get there and the distance to reach it from the start point. If we
|
// get there and the distance to reach it from the start point. If we
|
||||||
// find a better Path to reach a Place (lower distance), we update the
|
// find a better Path to reach a Place (shorter distance), we update the
|
||||||
// entry. Entries also serve as a "todo" list which is how we keep
|
// entry. Entries also serve as a "todo" list which is how we keep
|
||||||
// track of which paths to explore next.
|
// track of which paths to explore next.
|
||||||
const NotebookEntry = struct {
|
const NotebookEntry = struct {
|
||||||
|
|
|
@ -41,7 +41,7 @@ pub fn main() void {
|
||||||
fn printCircle(???) void {
|
fn printCircle(???) void {
|
||||||
print("x:{} y:{} radius:{}\n", .{
|
print("x:{} y:{} radius:{}\n", .{
|
||||||
circle.center_x,
|
circle.center_x,
|
||||||
circle.centaur_y,
|
circle.center_y,
|
||||||
circle.radius,
|
circle.radius,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue