Calling it 'fuel' for the brain

CMMHealth | Perky Brain <Jayden.Sullivan@gloverneurologix.com> Wed, 18 February 2015 17:05 UTC

Return-Path: <JaydenSullivan@tlsmail.gloverneurologix.com>
X-Original-To: ietfarch-krb-wg-archive@ietfa.amsl.com
Delivered-To: ietfarch-krb-wg-archive@ietfa.amsl.com
Received: from localhost (ietfa.amsl.com [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 81C951A923D for <ietfarch-krb-wg-archive@ietfa.amsl.com>; Wed, 18 Feb 2015 09:05:55 -0800 (PST)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: 3.688
X-Spam-Level: ***
X-Spam-Status: No, score=3.688 tagged_above=-999 required=5 tests=[BAYES_99=3.5, BAYES_999=0.2, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_RP_MATCHES_RCVD=-0.01] autolearn=no
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id h0ntwPJfO9dW for <ietfarch-krb-wg-archive@ietfa.amsl.com>; Wed, 18 Feb 2015 09:05:54 -0800 (PST)
Received: from tlsmail.gloverneurologix.com (tlsmail.gloverneurologix.com [173.233.129.100]) by ietfa.amsl.com (Postfix) with ESMTP id 4FDAF1A924A for <krb-wg-archive@lists.ietf.org>; Wed, 18 Feb 2015 09:05:22 -0800 (PST)
To: <krb-wg-archive@lists.ietf.org>
Subject: Calling it 'fuel' for the brain
Date: Wed, 18 Feb 2015 09:05:19 -0800
Message-ID: <20150218090491907f692357a024bc14d6bb51bcdb7cd3f26.20150218090491907@mx1.gloverneurologix.com>
From: CMMHealth | Perky Brain <Jayden.Sullivan@gloverneurologix.com>
Reply-to: <Jayden.Sullivan@gloverneurologix.com>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
MIME-Version: 1.0

CMMHealth | Added: Feb 18 2015 7:05AM


Editors Note: We were skeptical of this at first but after our investigation we are exploring how this can benefit everyone. http://www.gloverneurologix.com/negativing/271/81619/5555/photosensitized-derogation.html

==

(CMM) - We expose the truth behind this ground breaking phenomenon that can literally turn people into a genius. You're probably thinking; Yeah right! That is also the first thing that came out of our mouth. But we were wrong...

>> http://www.gloverneurologix.com/negativing/271/81619/5555/photosensitized-derogation.html


-



-


CMM | News | Video | Opinions | Travel | From CMM New Online
(6033 Hallowell Pl)
(Fort Wayne, IN)
(http://www.gloverneurologix.com/57804_troths-narrates.htm)




I had been studying the algorithm for finding lonely integers in an array, and here is the implementation:

int arr[] = {10, 20, 30 ,5, 20, 10,30 };
int LonelyInteger = 0;
for(int i=0; i< 7; i++)
{
    LonelyInteger = LonelyInteger ^ arr[i];
}

My question is - supposedly the integers (getting generated by the XOR operation) are too large due to this operation:

LonelyInteger ^ arr[i]