<?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: abhi6982</title>
    <description>The latest articles on DEV Community by abhi6982 (@abhi6982).</description>
    <link>https://dev.to/abhi6982</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%2F186922%2Ff645ef01-7163-4eda-96b8-2b39c7a9350b.jpeg</url>
      <title>DEV Community: abhi6982</title>
      <link>https://dev.to/abhi6982</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/abhi6982"/>
    <language>en</language>
    <item>
      <title>4.11 LAB: Remove gray from RGB Zybooks problem solved</title>
      <dc:creator>abhi6982</dc:creator>
      <pubDate>Thu, 27 Jun 2019 04:59:12 +0000</pubDate>
      <link>https://dev.to/abhi6982/4-11-lab-remove-gray-from-rgb-zybooks-problem-solved-5e7a</link>
      <guid>https://dev.to/abhi6982/4-11-lab-remove-gray-from-rgb-zybooks-problem-solved-5e7a</guid>
      <description>&lt;p&gt;Summary: Given integer values for red, green, and blue, subtract the gray from each value.&lt;/p&gt;

&lt;p&gt;Computers represent color by combining the sub-colors red, green, and blue (rgb). Each sub-color's value can range from 0 to 255. Thus (255, 0, 0) is bright red, (130, 0, 130) is a medium purple, (0, 0, 0) is black, (255, 255, 255) is white, and (40, 40, 40) is a dark gray. (130, 50, 130) is a faded purple, due to the (50, 50, 50) gray part. (In other words, equal amounts of red, green, blue yield gray).&lt;/p&gt;

&lt;p&gt;Given values for red, green, and blue, remove the gray part.&lt;/p&gt;

&lt;p&gt;Ex: If the input is:&lt;/p&gt;

&lt;p&gt;130&lt;br&gt;
50&lt;br&gt;
130&lt;br&gt;
the output is:&lt;/p&gt;

&lt;p&gt;80 0 80&lt;br&gt;
Find the smallest value, and then subtract it from all three values, thus removing the gray.&lt;/p&gt;

&lt;p&gt;Note: This page converts rgb values into colors.&lt;/p&gt;


&lt;div class="ltag__replit"&gt;
  &lt;iframe height="550px" src="https://repl.it/@AbishekLakandri/Solved-411-LAB-Remove-gray-from-RGB?lite=true"&gt;&lt;/iframe&gt;
&lt;/div&gt;


</description>
      <category>replit</category>
      <category>python</category>
    </item>
  </channel>
</rss>
