<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Bhadresh Ghevariya]]></title><description><![CDATA[Bhadresh Ghevariya]]></description><link>https://blog.bhadreshghevariya.com</link><generator>RSS for Node</generator><lastBuildDate>Sun, 17 May 2026 05:10:20 GMT</lastBuildDate><atom:link href="https://blog.bhadreshghevariya.com/rss.xml" rel="self" type="application/rss+xml"/><language><![CDATA[en]]></language><ttl>60</ttl><item><title><![CDATA[I wrote the first leetcode program after a Year and made simple mistakes.]]></title><description><![CDATA[Today, I tried to use my problem-solving muscle and tried solving easy-level problems on leetcode.
At first, this problem looked very easy to me, So I noted down important pieces of information and started to solve the problem on paper. Still, I took...]]></description><link>https://blog.bhadreshghevariya.com/i-wrote-the-first-leetcode-program-after-a-year-and-made-simple-mistakes</link><guid isPermaLink="true">https://blog.bhadreshghevariya.com/i-wrote-the-first-leetcode-program-after-a-year-and-made-simple-mistakes</guid><category><![CDATA[First leetcode]]></category><category><![CDATA[leetcodedaily]]></category><category><![CDATA[problem solving skills]]></category><category><![CDATA[coding journey]]></category><category><![CDATA[two-sum-problem]]></category><category><![CDATA[Java Programming]]></category><dc:creator><![CDATA[Bhadreshkumar Ghevariya]]></dc:creator><pubDate>Sun, 10 Nov 2024 08:14:39 GMT</pubDate><content:encoded><![CDATA[<p>Today, I tried to use my problem-solving muscle and tried solving easy-level problems on <a target="_blank" href="https://leetcode.com/">leetcode</a>.</p>
<p>At first, this problem looked very easy to me, So I noted down important pieces of information and started to solve the problem on paper. Still, I took many things for granted in my mind during this note-down process and I forgot to take minor details in the code, You can see what I mean by looking at the code and picture of my note shared below.</p>
<pre><code class="lang-java">dsclass Solution {
    <span class="hljs-keyword">public</span> <span class="hljs-keyword">int</span>[] twoSum(<span class="hljs-keyword">int</span>[] nums, <span class="hljs-keyword">int</span> target) {
        <span class="hljs-comment">// int[] ans = {-1,-1};</span>
        <span class="hljs-keyword">for</span>(<span class="hljs-keyword">int</span> i =<span class="hljs-number">0</span>; i&lt;nums.length; i++){
            <span class="hljs-comment">// ans[0] = i;</span>
            <span class="hljs-keyword">for</span>(<span class="hljs-keyword">int</span> j = i+<span class="hljs-number">1</span>;j&lt;(nums.length);j++){
                <span class="hljs-keyword">if</span>(nums[i]+nums[j] == target){
                    <span class="hljs-keyword">return</span> <span class="hljs-keyword">new</span> <span class="hljs-keyword">int</span>[]{i,j};
                }
            }
        }
        <span class="hljs-keyword">return</span> <span class="hljs-keyword">new</span> <span class="hljs-keyword">int</span>[]{};
    }
}
</code></pre>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1731226063007/75f8874a-bfe3-4998-ba25-733133b995ca.jpeg" alt="Image of my notes for the problem and solution on paper." class="image--center mx-auto" /></p>
<p>Thank you for reading, follow me if you want to join the journey of learning to solve problems and coding.</p>
]]></content:encoded></item><item><title><![CDATA[My First Blog]]></title><description><![CDATA[Finally, I took the first step towards building an online presence, let’s see how it turns out.
Little Background…
My name is Bhadreshkumar Ghevariya. I am a problem solver who likes to solve real-world problems by building software systems.

Let’s B...]]></description><link>https://blog.bhadreshghevariya.com/my-first-blog</link><guid isPermaLink="true">https://blog.bhadreshghevariya.com/my-first-blog</guid><category><![CDATA[Starting a blog]]></category><category><![CDATA[bhadresh ghevariya]]></category><category><![CDATA[First Blog]]></category><category><![CDATA[#first-article]]></category><dc:creator><![CDATA[Bhadreshkumar Ghevariya]]></dc:creator><pubDate>Sat, 09 Nov 2024 05:09:43 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/stock/unsplash/TamMbr4okv4/upload/c4184deea4e434e9ef0a914302e939d1.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Finally, I took the first step towards building an online presence, let’s see how it turns out.</p>
<h3 id="heading-little-background">Little Background…</h3>
<p>My name is Bhadreshkumar Ghevariya. I am a problem solver who likes to solve real-world problems by building software systems.</p>
<blockquote>
<p>Let’s Build together, Grow together</p>
</blockquote>
]]></content:encoded></item></channel></rss>