From ab60b45871afa30063428ddb6ac42b60d98ade27 Mon Sep 17 00:00:00 2001 From: Omelette Date: Wed, 22 Nov 2023 06:53:22 +0800 Subject: [PATCH] docs: added a description to ex09 (#70) Co-authored-by: Y omelette --- src/ex09.cairo | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/ex09.cairo b/src/ex09.cairo index ace6c1a..5b5b940 100644 --- a/src/ex09.cairo +++ b/src/ex09.cairo @@ -2,9 +2,12 @@ // Exercise 9 // Recursions - advanced //////////////////////////////// -// TODO (omar): Add a description of the exercise -// - Use this contract's claim_points() function -// - Your points are credited by the contract +// In this exercise, you need to: +// - Follow this contract's claim_points() function to understand how to finish the exercise +// - Send the correct array to claim_points() to claim your points +// - Your points are credited by the contract if you send the correct value +// What you'll learn +// - The relavent function of Array, such as is_empty(), len() and more //////////////////////////////// #[contract]