<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Bubble Sort Demo Volunteers by Zebel -Al- Tareq</title>
      <link>https://padlet.com/bdzebel/kzebulm07q8dzp8f</link>
      <description>Let&#39;s rearrange with bubble sort</description>
      <language>en-us</language>
      <pubDate>2020-11-27 13:29:27 UTC</pubDate>
      <lastBuildDate>2025-11-23 18:35:30 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>PROBLEM TO SOLVE</title>
         <author>bdzebel</author>
         <link>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665862</link>
         <description><![CDATA[<div>The numbers are not in a sorted order. Your team has to sort the numbers using BUBBLE SORT METHOD.</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-27 13:29:27 UTC</pubDate>
         <guid>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665862</guid>
      </item>
      <item>
         <title>Instruction 1</title>
         <author>bdzebel</author>
         <link>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665863</link>
         <description><![CDATA[<div>- move the number that has been assigned to you only.<br>- you are only allowed to move when it is your turn</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-27 13:29:27 UTC</pubDate>
         <guid>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665863</guid>
      </item>
      <item>
         <title>1. initialize a variable</title>
         <author>bdzebel</author>
         <link>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665864</link>
         <description><![CDATA[<div> string1 = 'abc'<br> num1 = 23<br>array = [4,5,1,3,2]<br>#array [0] is 4<br>#array [1] is 5</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-27 13:29:27 UTC</pubDate>
         <guid>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665864</guid>
      </item>
      <item>
         <title>3. length of array and for loop</title>
         <author>bdzebel</author>
         <link>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665866</link>
         <description><![CDATA[<div># size of array<br>array = [4,5,1,3,2]<br>print(len(array))<br>#prints 5<br>for i in range(len(array)):<br>     print(array [i])<br># what does the for loop print?</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-27 13:29:27 UTC</pubDate>
         <guid>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665866</guid>
      </item>
      <item>
         <title>2. For loop example</title>
         <author>bdzebel</author>
         <link>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665867</link>
         <description><![CDATA[<div>for i in range(3):<br>   print(i)<br># prints 0,1,2</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-27 13:29:27 UTC</pubDate>
         <guid>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665867</guid>
      </item>
      <item>
         <title>4.If else</title>
         <author>bdzebel</author>
         <link>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665868</link>
         <description><![CDATA[<div>a = 12</div><div>b = 13</div><div>if a &gt; b:</div><div>  print('a is greater than b')</div><div>elif a &lt; b:</div><div>  print('a is less than b')</div><div>else:</div><div>  print('a is not greater than b')</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-27 13:29:27 UTC</pubDate>
         <guid>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665868</guid>
      </item>
      <item>
         <title>5. logical operations</title>
         <author>bdzebel</author>
         <link>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665869</link>
         <description><![CDATA[<div>a = 12</div><div>b = 13</div><div>if a &gt; b or a == 12:</div><div>  print('or gate has been executed')</div><div> </div><div>if a &lt; b and b == 13:</div><div>   print('and gate has been executed') </div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-27 13:29:27 UTC</pubDate>
         <guid>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665869</guid>
      </item>
      <item>
         <title>IN PROGRAMMING, INDEX ALWAYS STARTS FROM 0</title>
         <author>bdzebel</author>
         <link>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665870</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2020-11-27 13:29:27 UTC</pubDate>
         <guid>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665870</guid>
      </item>
      <item>
         <title>Bubble Sort Code</title>
         <author>bdzebel</author>
         <link>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665873</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/788100979/40dcdd45f9842693146f2186c80df339/Screen_Shot_2020_11_26_at_8_58_29_PM.png" />
         <pubDate>2020-11-27 13:29:27 UTC</pubDate>
         <guid>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665873</guid>
      </item>
      <item>
         <title>id : 1</title>
         <author>bdzebel</author>
         <link>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665874</link>
         <description><![CDATA[<div>step:3</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/788100979/f6d1044bcffacb64dfeeb01f72440398/39.png" />
         <pubDate>2020-11-27 13:29:27 UTC</pubDate>
         <guid>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665874</guid>
      </item>
      <item>
         <title>id: 2</title>
         <author>bdzebel</author>
         <link>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665875</link>
         <description><![CDATA[<div>step: 5</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/788100979/9ef51824fb77291419a395ae66327bfc/27.png" />
         <pubDate>2020-11-27 13:29:27 UTC</pubDate>
         <guid>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665875</guid>
      </item>
      <item>
         <title>id: 3</title>
         <author>bdzebel</author>
         <link>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665877</link>
         <description><![CDATA[<div>step: 1</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/788100979/559a2d451acde0d274f0492c2bc95c74/60.png" />
         <pubDate>2020-11-27 13:29:27 UTC</pubDate>
         <guid>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665877</guid>
      </item>
      <item>
         <title>id: 4</title>
         <author>bdzebel</author>
         <link>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665878</link>
         <description><![CDATA[<div>step: 0</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/788100979/fe5904dce7a56da25a51e474846974dc/122.png" />
         <pubDate>2020-11-27 13:29:27 UTC</pubDate>
         <guid>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665878</guid>
      </item>
      <item>
         <title>id: 5</title>
         <author>bdzebel</author>
         <link>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665879</link>
         <description><![CDATA[<div>step:2</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/788100979/ce76da3630a17fb1aacfabfb247191fd/41.png" />
         <pubDate>2020-11-27 13:29:27 UTC</pubDate>
         <guid>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665879</guid>
      </item>
      <item>
         <title>id: 6</title>
         <author>bdzebel</author>
         <link>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665882</link>
         <description><![CDATA[<div>step:4</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/788100979/22728a7a71ef03f5c5a8dd2c8515975b/33.png" />
         <pubDate>2020-11-27 13:29:27 UTC</pubDate>
         <guid>https://padlet.com/bdzebel/kzebulm07q8dzp8f/wish/965665882</guid>
      </item>
   </channel>
</rss>
