Here I have listed some basic programs in scheme language. Ask me if you have any doubts :). _____________________ ;;Bubble sort (define (bubble inputList) (define […]
Month: October 2009
Scheme Language – basic programs set 2
; string reverse (define (stringrev inputString) (define len (string-length inputString)) (define result “”) (let loop((count len)) (if(> count 0) (begin (set! result (string-append result (make-string […]
Scheme Language – basic programs set 3
(define (checkperfect num) (define total 0) (let loop((count 1) (end(round(/ num 2))) (temp 0)) (if(<= count end) (begin (if(= (modulo num count) 0) (begin (set! […]
Movie Review – Aadhavan
To avoid swine flu problems, they didn’t allow us to go to home for this deepavali. So we have planned to go for a movie […]
TCS days starts
On 29.09.2009 our training starts in TCS, Trivandrum technopark campus. It is really cool here both infra structure and also our accommodation. Training ends on […]