One beautiful property of XOR (symbol : ) is that for any integer , we have . Using this property, Chris came up with an algorithm that check if a list is palindromic.
1 2 3 4 5 6 7 8 9 |
|
Certainly, this function is restricted to lists that contain only numbers. What is the domain of the numbers in the list such that this function is applicable without error?
Details and Assumptions
a ^ b
returns
.
L
is palindromic if
L
remains the same after applying
L.reverse()
.
L[-1]
, second last element is
L[-2]
and so on.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
No explanations have been posted yet. Check back later!