<?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: aryanarya</title>
    <description>The latest articles on DEV Community by aryanarya (@aryanar28481526).</description>
    <link>https://dev.to/aryanar28481526</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%2F120383%2F29cc0e0f-f6f7-4a25-8207-9bf11dfd988b.jpeg</url>
      <title>DEV Community: aryanarya</title>
      <link>https://dev.to/aryanar28481526</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/aryanar28481526"/>
    <language>en</language>
    <item>
      <title>Daily Coding - DAY-1 # Math</title>
      <dc:creator>aryanarya</dc:creator>
      <pubDate>Fri, 07 Dec 2018 14:56:14 +0000</pubDate>
      <link>https://dev.to/aryanar28481526/math-49po</link>
      <guid>https://dev.to/aryanar28481526/math-49po</guid>
      <description>&lt;p&gt;Finding the ways&lt;br&gt;
You are given an integer &lt;code&gt;N&lt;/code&gt; and a value &lt;code&gt;k&lt;/code&gt; . You need to find a minimum number  &lt;code&gt;X&lt;/code&gt; which when multiplied to &lt;code&gt;N&lt;/code&gt; results in the value of N^(1/k)  as an integer. &lt;/p&gt;

&lt;p&gt;For example let N =6  and k=2 , then the answer will be 6 because 6*6 =36  and if we calculate 36^(1/2) it is equal to 6 which is an integer.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;Input&lt;/code&gt;&lt;br&gt;
The first line contains two space-separated values &lt;code&gt;N&lt;/code&gt; and &lt;code&gt;6&lt;/code&gt; as input.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;Output&lt;/code&gt;&lt;br&gt;
Print the minimum number &lt;code&gt;X&lt;/code&gt;  modulo 10^9 + 7&lt;/p&gt;

&lt;p&gt;&lt;code&gt;Sample Input&lt;/code&gt;&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;12 2
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;&lt;code&gt;Sample Output&lt;/code&gt;&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;3
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;If you multiply 6 with 6  then the result becomes 36 which is a perfect power of 2 .&lt;/p&gt;

</description>
      <category>challenge</category>
    </item>
    <item>
      <title>Daily Coding - DAY 1 # typographically smallest </title>
      <dc:creator>aryanarya</dc:creator>
      <pubDate>Fri, 07 Dec 2018 14:42:11 +0000</pubDate>
      <link>https://dev.to/aryanar28481526/typographically-smallest--2nnf</link>
      <guid>https://dev.to/aryanar28481526/typographically-smallest--2nnf</guid>
      <description>&lt;p&gt;Given a string consisting of lowercase letters only, find the typographically smallest string not present as a substring in it.&lt;/p&gt;

&lt;p&gt;Given two string S1 and S2. S1 is considered typographically smaller than S2 if either:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fthepracticaldev.s3.amazonaws.com%2Fi%2Fq4vr2ooa40vz17fk0geh.JPG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fthepracticaldev.s3.amazonaws.com%2Fi%2Fq4vr2ooa40vz17fk0geh.JPG"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Input:
&lt;/h3&gt;

&lt;p&gt;The first line of input contains the string S.&lt;/p&gt;

&lt;h3&gt;
  
  
  Output:
&lt;/h3&gt;

&lt;p&gt;Answer as stated above.&lt;/p&gt;

&lt;p&gt;Constraints:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fthepracticaldev.s3.amazonaws.com%2Fi%2Fm9u1w87f8fm1vs7fnadh.JPG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fthepracticaldev.s3.amazonaws.com%2Fi%2Fm9u1w87f8fm1vs7fnadh.JPG"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Sample Input
&lt;/h3&gt;

&lt;p&gt;saurabh&lt;/p&gt;

&lt;h3&gt;
  
  
  Sample Output
&lt;/h3&gt;

&lt;p&gt;c&lt;/p&gt;

</description>
      <category>challenge</category>
    </item>
  </channel>
</rss>
