Tcs Coding Questions - 2021
class Node: def __init__(self, data): self.data = data self.next = None
print(is_palindrome("madam")) # Output: True Tcs Coding Questions 2021
print(first_non_repeating_char("aabbc")) # Output: "c" class Node: def __init__(self, data): self
Given a linked list, find the middle element. class Node: def __init__(self