like convert (1 2 3 4) to 1234~
|
|
|
|
|
|
|
This sounds like a homework question... Think about powers of ten and what each digit in a number like 1234 actually means. |
||
|
|
|
|
I write the code as following~~~it works, but the code may be too long~~~
|
|||
|
|
|
Since you've posted your working solution, I'll post this. If you can't use let, you can do similar with a helper function.
A book like "The Little Schemer" is inexpensive, easy and fun to read, and it really gets you thinking in "Scheme mode". It will help you write more concise solutions. |
||
|
|
|
|
The problem is characterized by coalescing a list into a single value, strongly suggesting use of a fold:
(define (fold-left op initial items)
(define (loop result rest)
(if (null? rest)
result
(loop (op result (car rest))
(cdr rest))))
(loop initial items))
(define (list->num list)
(fold-left (lambda (value digit)
(+ (* value 10) digit))
0
list))
(list->num '(1 2 3 4))
;Value: 1234
|
||
|
|
