096_memory_allocation.patch 420 B

1234567891011
  1. --- exercises/096_memory_allocation.zig 2023-11-21 14:55:33.805678390 +0100
  2. +++ answers/096_memory_allocation.zig 2023-11-21 14:56:00.236163484 +0100
  3. @@ -64,7 +64,7 @@
  4. const allocator = arena.allocator();
  5. // allocate memory for this array
  6. - const avg: []f64 = ???;
  7. + const avg: []f64 = try allocator.alloc(f64, arr.len);
  8. runningAverage(arr, avg);
  9. std.debug.print("Running Average: ", .{});