From f6faac55aa951c2e404481de391e7511cb33b79e Mon Sep 17 00:00:00 2001 From: Stuart Mosquera Date: Tue, 12 Aug 2025 12:03:34 -0300 Subject: [PATCH] fix(curriculum): make output explicit in projectile trajectory step 14 (#61731) --- .../663353465bfb14259717da93.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/learn-encapsulation-by-building-a-projectile-trajectory-calculator/663353465bfb14259717da93.md b/curriculum/challenges/english/07-scientific-computing-with-python/learn-encapsulation-by-building-a-projectile-trajectory-calculator/663353465bfb14259717da93.md index 33336876713..2c9cee51537 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/learn-encapsulation-by-building-a-projectile-trajectory-calculator/663353465bfb14259717da93.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/learn-encapsulation-by-building-a-projectile-trajectory-calculator/663353465bfb14259717da93.md @@ -42,7 +42,7 @@ You should have a `create_coordinates_table()` method. }) ``` -The method should return the correct output. +The `create_coordiantes_table` method for `Projectile(10, 3, 45)` should return `'\n x y\n 0 3.00\n 1 3.90\n 2 4.61\n 3 5.12\n 4 5.43\n 5 5.55\n 6 5.47\n 7 5.19\n 8 4.72\n 9 4.05\n 10 3.19\n 11 2.13\n 12 0.87\n'`. ```js ({