From 6e8f6e9ef3eb7ec20134be17255bfb074e8421f0 Mon Sep 17 00:00:00 2001 From: Niklas Heim Date: Fri, 23 Feb 2024 07:51:58 +0100 Subject: [PATCH] Solution to Lab 01 (#5) --- labs/lab01.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/labs/lab01.md b/labs/lab01.md index 051726c..4ad5a0e 100644 --- a/labs/lab01.md +++ b/labs/lab01.md @@ -130,16 +130,14 @@ The number of digits can be computed by successive dividing the input number by the integer division, you can use the function `quotient`. ::: - ### Task 2 Write a function `(num->str n [radix 10])` taking as input an integer `n` together @@ -159,7 +157,6 @@ remainders. The remainder after integer division can be computed by the function ::: - - +:::