I ask if i can calculate xor to all numbers in a specific range without using loop
for example if i have
start=3
end =3211233432145321;
the result start ^ start+1 ^ start+2 ^ start+3.........end-1^end
Thanks in advanced.
I ask if i can calculate xor to all numbers in a specific range without using loop
| # | User | Rating |
|---|---|---|
| 1 | Benq | 3792 |
| 2 | VivaciousAubergine | 3647 |
| 3 | Kevin114514 | 3611 |
| 4 | jiangly | 3583 |
| 5 | strapple | 3515 |
| 6 | tourist | 3470 |
| 7 | dXqwq | 3436 |
| 8 | Radewoosh | 3415 |
| 9 | Otomachi_Una | 3413 |
| 10 | Um_nik | 3376 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 162 |
| 2 | adamant | 150 |
| 3 | Um_nik | 146 |
| 4 | Dominater069 | 144 |
| 5 | errorgorn | 141 |
| 6 | cry | 139 |
| 7 | Proof_by_QED | 136 |
| 8 | YuukiS | 135 |
| 9 | chromate00 | 134 |
| 9 | TheScrasse | 134 |
| Name |
|---|



Finally,
you mention that you need only last 4 numbers so to calculate f(x)
f(x)=(x-3)^(x-2)^(x-1)^(x)
i test it by using this function vs bruteforce solution but the result different.
I wrote C++ code for this: https://github.com/liruqi/topcoder/blob/master/leetcode/exclusive-or-of-numbers-range.cpp