Created
May 17, 2020 18:32
-
-
Save pppillai/f4ee463cbd75c5a20b8e074740c14f69 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-module(palindorme). | |
-export([palindrome/1]). | |
palindrome(Name) -> | |
Name==palindrome(Name, []). | |
palindrome([], Result) -> | |
Result; | |
palindrome([H|T], Result) -> | |
palindrome(T, [H|Result]). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment