Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check weather given string is palindrome or not #1239

Closed
wants to merge 4 commits into from

Conversation

Aarti002
Copy link
Contributor

issue #346 solved
Python
Doubly linked list

@ANAMIKA1410
Copy link

hello ;
I'm Anamika jain , GSSoC participant
please assign this to me @Aarti002 @anubhavitis @aaadddiii @tarun26091999 @dheerajkotwani

Copy link

@ANAMIKA1410 ANAMIKA1410 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

def isPalindrome(str):

# Run loop from 0 to len/2 
for i in range(0, int(len(str)/2)): 
    if str[i] != str[len(str)-i-1]:
        return False
return True

@Aarti002
Copy link
Contributor Author

hey @ANAMIKA1410 i'm a participant as well :)

@krishantraj
Copy link

krishantraj commented Mar 28, 2021

can I solve this issue #1239 in java without using a linked list? if yes, please assign it to me.

Copy link
Member

@vatsalkesarwani12 vatsalkesarwani12 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

update readme

Linked_list/Python/isPalindrom_dll.py Outdated Show resolved Hide resolved
@Aarti002
Copy link
Contributor Author

@plazzy99 i have a doubt where we should keep this solutions file? in "Code" folder or topic related folder like in this case "Linked-List", please help!
Thank you!

@vatsalkesarwani12
Copy link
Member

vatsalkesarwani12 commented Apr 23, 2021

@plazzy99 i have a doubt where we should keep this solutions file? in "Code" folder or topic related folder like in this case "Linked-List", please help!
Thank you!

#1202 refer this

@Aarti002
Copy link
Contributor Author

@plazzy99 please check once i have added my code link in readme file
Thank you!

@rudrakshi99
Copy link
Member

Please resolve merge conflicts.

@tarun26091999
Copy link
Member

@rudrakshi99 look into it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants