<?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: Abdulmajid Yunusov</title>
    <description>The latest articles on DEV Community by Abdulmajid Yunusov (@goldendevuz).</description>
    <link>https://dev.to/goldendevuz</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%2F2780879%2F3471b9ce-0106-47d7-8dab-4b25b6a5165f.png</url>
      <title>DEV Community: Abdulmajid Yunusov</title>
      <link>https://dev.to/goldendevuz</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/goldendevuz"/>
    <language>en</language>
    <item>
      <title>a</title>
      <dc:creator>Abdulmajid Yunusov</dc:creator>
      <pubDate>Sat, 31 May 2025 15:27:40 +0000</pubDate>
      <link>https://dev.to/goldendevuz/a-1a68</link>
      <guid>https://dev.to/goldendevuz/a-1a68</guid>
      <description>&lt;h1&gt;Filtering Items Based on Digit Positions in Python&lt;/h1&gt;

&lt;p&gt;In this example, we filter a list of strings based on a specific digit pattern. The goal is to find all items where the &lt;strong&gt;last digit is equal to the third-from-last digit&lt;/strong&gt;, but only if those digits are between &lt;code&gt;0&lt;/code&gt; and &lt;code&gt;5&lt;/code&gt;.&lt;/p&gt;

&lt;h2&gt;Filter Logic&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;Check if the string length is at least 3.&lt;/li&gt;
  &lt;li&gt;Check if &lt;code&gt;item[-1] == item[-3]&lt;/code&gt;.&lt;/li&gt;
  &lt;li&gt;Check if that digit is in the set &lt;code&gt;{'0', '1', '2', '3', '4', '5'}&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This helps identify patterns like &lt;code&gt;'770410232'&lt;/code&gt; where the last digit &lt;code&gt;'2'&lt;/code&gt; matches the third-from-last digit &lt;code&gt;'2'&lt;/code&gt;.&lt;/p&gt;

&lt;h2&gt;Filtered Items List&lt;/h2&gt;

&lt;pre&gt;&lt;code&gt;filtered_items = [
    '770410232', '770410252', '770410353', '770410434', '770410454', '770410535', '770410545',
    '770411232', '770411252', '770411343', '770411353', '770411454', '770411535', '770411545',
    '770412353', '770412434', '770412454', '770412535', '770412545', '770413202', '770413212',
    '770413242', '770413252', '770413414', '770413424', '770413454', '770413515', '770413525',
    '770413545', '770414313', '770414323', '770414515', '770414525', '770414535', '770415121',
    '770415202', '770415212', '770415232', '770415242', '770415303', '770415313', '770415343',
    '770415404', '770415424', '771140151', '771140232', '771140242', '771140252', '771140343',
    '771140535', '771140545', '771141232', '771141242', '771141252', '771141343', '771141535',
    '771142131', '771142141', '771142313', '771142343', '771142535', '771142545', '771143101',
    '771143121', '771143141', '771143151', '771143242', '771143252', '771143505', '771143515',
    '771143525', '771144131', '771144232', '771144303', '771144313', '771144323', '771144515',
    '771144525', '771144535', '771145101', '771145121', '771145131', '771145141', '771145202',
    '771145212', '771145232', '771145242', '771145313', '771145343',
]
&lt;/code&gt;&lt;/pre&gt;

&lt;h2&gt;Summary&lt;/h2&gt;

&lt;p&gt;This filtered list contains all items matching the digit pattern rule described above. The approach can be adapted for other positional digit checks or patterns in strings.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>👋 Welcome to My Dev.to Blog!</title>
      <dc:creator>Abdulmajid Yunusov</dc:creator>
      <pubDate>Wed, 29 Jan 2025 03:37:54 +0000</pubDate>
      <link>https://dev.to/goldendevuz/welcome-to-my-devto-blog-3api</link>
      <guid>https://dev.to/goldendevuz/welcome-to-my-devto-blog-3api</guid>
      <description>&lt;p&gt;Hey everyone! I'm &lt;strong&gt;Abdulmajid&lt;/strong&gt;, a passionate &lt;strong&gt;backend developer&lt;/strong&gt; from &lt;strong&gt;Uzbekistan&lt;/strong&gt;. 🚀  &lt;/p&gt;

&lt;h2&gt;
  
  
  🔭 What I'm Working On &lt;strong&gt;Simple Address Book&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;I'm currently working on &lt;strong&gt;building projects&lt;/strong&gt; and exploring new technologies to enhance my backend development skills.  &lt;/p&gt;

&lt;h2&gt;
  
  
  👯 Looking to Collaborate on AudioBookAPI
&lt;/h2&gt;

&lt;p&gt;I'm always open to collaborating on &lt;strong&gt;pet projects&lt;/strong&gt; and contributing to open-source initiatives. If you're working on something exciting, let’s connect!  &lt;/p&gt;

&lt;h2&gt;
  
  
  🤝 How You Can Help
&lt;/h2&gt;

&lt;p&gt;I'm looking for &lt;strong&gt;opportunities to grow, learn, and land a job&lt;/strong&gt; in backend development. If you have any advice, job leads, or interesting projects, feel free to reach out.  &lt;/p&gt;

&lt;h2&gt;
  
  
  📫 Connect With Me
&lt;/h2&gt;

&lt;p&gt;You can find me on:  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;GitHub: &lt;a href="https://github.com/goldendevuz" rel="noopener noreferrer"&gt;goldendevuz&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;LinkedIn: &lt;a href="https://www.linkedin.com/in/uzbekengineer/" rel="noopener noreferrer"&gt;uzbekengineer&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Telegram: &lt;a href="https://t.me/avengerdev" rel="noopener noreferrer"&gt;@avengerdev&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Looking forward to engaging with the amazing &lt;strong&gt;Mohirdev&lt;/strong&gt; and Dev.to community! 🚀🔥  &lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
