We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e8101c commit 17dc901Copy full SHA for 17dc901
src/dynamic-programming.zig
@@ -45,7 +45,7 @@ fn fibonacciDynamicProgramming(comptime T: type, n: T) T {
45
}
46
47
pub fn main() !void {
48
- const input_values = [_]u32{ 1, 2, 3, 8, 12, 30, 40, 55 };
+ const input_values = [_]u32{ 1, 2, 3, 8, 12, 30, 40, 42, 43, 44 };
49
50
for (input_values) |input| {
51
std.debug.print("\n\n>>> Input \x1B[33m{d}\x1B[0m → fibonacci", .{ input });
0 commit comments