<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: matthijs pouwels</title>
    <description>The latest articles on DEV Community by matthijs pouwels (@matthijs_pouwels_9996aa3f).</description>
    <link>https://dev.to/matthijs_pouwels_9996aa3f</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2931565%2F2d422375-7e91-4a8a-93bf-d5330be3ec48.jpg</url>
      <title>DEV Community: matthijs pouwels</title>
      <link>https://dev.to/matthijs_pouwels_9996aa3f</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/matthijs_pouwels_9996aa3f"/>
    <language>en</language>
    <item>
      <title>First pseudocode lines!</title>
      <dc:creator>matthijs pouwels</dc:creator>
      <pubDate>Tue, 11 Mar 2025 10:47:51 +0000</pubDate>
      <link>https://dev.to/matthijs_pouwels_9996aa3f/first-pseudocode-lines-1mij</link>
      <guid>https://dev.to/matthijs_pouwels_9996aa3f/first-pseudocode-lines-1mij</guid>
      <description>&lt;p&gt;Hey guys, I’ve started introduction to IT course on CodeCademy and I wrote my first pseudocode lines. I’m very curious for feedback and ideas.&lt;/p&gt;

&lt;p&gt;This was the assignment:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Take two string values called text and pattern.&lt;/li&gt;
&lt;li&gt;Search through the value of text to check if the value pattern can be found within text.&lt;/li&gt;
&lt;li&gt;Notify the user if pattern was found in text or not.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This is my solution:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Input the pattern that needs to be searched&lt;/li&gt;
&lt;li&gt;To keep track of whether the text contains the pattern, establish a contains_pattern variable and initially set it to False.&lt;/li&gt;
&lt;li&gt;Has the  pattern been found?
If not, continue to step 3.
If so, skip to step 5.&lt;/li&gt;
&lt;li&gt;Is the current word equal to pattern?
If not, go back to step 3 and continue to iterate over the entire text.
If so, set the contains_pattern variable to True and then continue to step &lt;/li&gt;
&lt;li&gt;Is the contains_pattern equal to True?
If not, then the pattern is not in the text.
If so, then the pattern is in the text!&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Would love to hear your thoughts! Any improvements or alternative approaches you'd suggest? 🚀&lt;/p&gt;

</description>
      <category>computerscience</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
