Add descriptions to each exercise

This commit is contained in:
2023-12-11 15:37:55 +00:00
parent 17f44d6fec
commit 7c95a358ad
13 changed files with 44 additions and 0 deletions

View File

@@ -1,3 +1,6 @@
-- Write a function to return the hexadecimal representation (in a
-- string) of a number. Use lowercase a to f.
--
-- Solution --------------------------------------------------------------------
function hexadecimal(x)
-- Your implementation here