-
Notifications
You must be signed in to change notification settings - Fork 618
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
Conversation
hello ; |
There was a problem hiding this 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
hey @ANAMIKA1410 i'm a participant as well :) |
can I solve this issue #1239 in java without using a linked list? if yes, please assign it to me. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
update readme
@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! |
#1202 refer this |
@plazzy99 please check once i have added my code link in readme file |
Please resolve merge conflicts. |
@rudrakshi99 look into it. |
issue #346 solved
Python
Doubly linked list