<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments for Inga X	</title>
	<atom:link href="https://ingax.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>https://ingax.com</link>
	<description>An education platform for people passionate about software engineering to learn problem solving techniques and useful algorithms and data structures</description>
	<lastBuildDate>Sat, 12 Nov 2022 17:41:28 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.5.18</generator>
	<item>
		<title>
		Comment on Linked Lists by Shabbir Sadiq		</title>
		<link>https://ingax.com/linked-lists/#comment-1870</link>

		<dc:creator><![CDATA[Shabbir Sadiq]]></dc:creator>
		<pubDate>Wed, 15 Dec 2021 11:06:04 +0000</pubDate>
		<guid isPermaLink="false">https://ingax.com/?p=6367#comment-1870</guid>

					<description><![CDATA[AWESOME POST............................]]></description>
			<content:encoded><![CDATA[<p>AWESOME POST&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Decoding a Secret Message by David Inga		</title>
		<link>https://ingax.com/decoding-a-secret-message/#comment-897</link>

		<dc:creator><![CDATA[David Inga]]></dc:creator>
		<pubDate>Thu, 19 Nov 2020 19:48:39 +0000</pubDate>
		<guid isPermaLink="false">https://ingax.com/?p=6878#comment-897</guid>

					<description><![CDATA[&lt;pre&gt;&lt;code class=&quot;language-&quot;&gt;import Foundation

func decrypt(word: String) -&gt; String {
    var ascii = word.map { Int($0.asciiValue!) }
    
    let count = ascii.count
    
    var prev = ascii[0]
    for i in 1..&lt;count {
        let temp = ascii[i]
        ascii[i] = ascii[i] - prev
        prev = temp
    }
    
    ascii[0] -= 1
    
    for i in 0..&lt;count {
        while ascii[i] &lt; 96 {
            ascii[i] += 26
        }
    }
    
    return String(ascii.map {
        Character(UnicodeScalar(UInt8($0)))
    })
}&lt;/code&gt;&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<pre><code class="language-">import Foundation

func decrypt(word: String) -> String {
    var ascii = word.map { Int($0.asciiValue!) }
    
    let count = ascii.count
    
    var prev = ascii[0]
    for i in 1..<count {
        let temp = ascii[i]
        ascii[i] = ascii[i] - prev
        prev = temp
    }
    
    ascii[0] -= 1
    
    for i in 0..<count {
        while ascii[i] < 96 {
            ascii[i] += 26
        }
    }
    
    return String(ascii.map {
        Character(UnicodeScalar(UInt8($0)))
    })
}</code></count></code></pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Binary Tree Descriptors by Daniel		</title>
		<link>https://ingax.com/binary-tree-descriptors/#comment-321</link>

		<dc:creator><![CDATA[Daniel]]></dc:creator>
		<pubDate>Thu, 21 Nov 2019 21:22:12 +0000</pubDate>
		<guid isPermaLink="false">https://ingax.com/?p=6522#comment-321</guid>

					<description><![CDATA[Oooooh cool website bro bro!]]></description>
			<content:encoded><![CDATA[<p>Oooooh cool website bro bro!</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Object Caching 10/46 objects using disk
Page Caching using disk: enhanced 
Database Caching using disk

Served from: ingax.com @ 2026-05-21 09:43:02 by W3 Total Cache
-->