PDA

View Full Version : help drschme


taha
11-22-2009, 07:07 PM
Write a predicate that tests whether a given string is palindromic or not. A string is palindromic if it reads the same in both directions. Accordingly, application of this
predicate should give the following results.
(palindromic? “madam”) ̃ #t
(palindromic? “Madam”) ̃ #t
(palindromic? “”) ̃ #t
(palindromic? “chic”) ̃ #f
(palindromic? “küçük”) ̃ #t


you can how to define in schme

tomws
11-22-2009, 08:13 PM
From the forum rules (http://www.codingforums.com/rules.htm):

1.5) No homework assignments - Do not post your entire homework assignment and request that other members do it for you. This is considered cheating, and your thread may even be used by your school to prove your guilt. Now, you may ask for advice or help on a specific aspect of your assignment that you're having trouble with. Use common sense as far as what's acceptable in terms of soliciting help with homework assignments.

taha
11-26-2009, 09:10 PM
Write a predicate that tests whether a given string is palindromic or not. A string is palindromic if it reads the same in both directions. Accordingly, application of this
predicate should give the following results.
(palindromic? “madam”) ̃ #t
(palindromic? “Madam”) ̃ #t
(palindromic? “”) ̃ #t
(palindromic? “chic”) ̃ #f
(palindromic? “küçük”) ̃ #t


you can how to define in schme
oh sheet

oesxyl
11-26-2009, 11:28 PM
oh sheet
what kind, stylesheet or spreadsheet? :)
try one of the textbooks or tutorials from this link:

http://schemers.org/

post question where you have problem but don't expect to get something else then some directions since is a homework, :)

best regards