<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>A2 Computer Science by Tutor</title>
      <link>https://padlet.com/njo/20171030_a2</link>
      <description>Search Algorithm</description>
      <language>en-us</language>
      <pubDate>2017-10-30 09:30:05 UTC</pubDate>
      <lastBuildDate>2017-11-02 12:12:33 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>Luke Bolton</title>
         <author></author>
         <link>https://padlet.com/njo/20171030_a2/wish/201637986</link>
         <description><![CDATA[<div>input num;<br>for(int i = 0; I &lt; array.length; i++){<br>&nbsp; &nbsp;if(array[i] == num){<br>&nbsp; &nbsp; &nbsp; return i;<br>&nbsp; &nbsp;}<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-10-30 09:40:57 UTC</pubDate>
         <guid>https://padlet.com/njo/20171030_a2/wish/201637986</guid>
      </item>
      <item>
         <title>Carl Beeston</title>
         <author></author>
         <link>https://padlet.com/njo/20171030_a2/wish/201637991</link>
         <description><![CDATA[<div>int targetValue=input;<br>int[] Array = new Int[100];<br>for(int i = 0; I&lt;Array.length;i--){<br>&nbsp; &nbsp; &nbsp;if(Array[i]==targetValue){<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;System.out.println(Array[i]+" found at position " + I);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;break;</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-10-30 09:40:58 UTC</pubDate>
         <guid>https://padlet.com/njo/20171030_a2/wish/201637991</guid>
      </item>
      <item>
         <title>Kieran</title>
         <author></author>
         <link>https://padlet.com/njo/20171030_a2/wish/201637993</link>
         <description><![CDATA[<div>int[] myArray = {1, 2, 3, 4...};<br>INPUT searchTerm<br>int i = 0;<br>WHILE searchTerm != myArray[i] DO<br>i = i + 1;<br>}<br>if searchTerm == myArray[i] DO<br>Output "Search term found"</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-10-30 09:40:58 UTC</pubDate>
         <guid>https://padlet.com/njo/20171030_a2/wish/201637993</guid>
      </item>
      <item>
         <title>Nilesh:</title>
         <author>njo</author>
         <link>https://padlet.com/njo/20171030_a2/wish/201638000</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2017-10-30 09:41:00 UTC</pubDate>
         <guid>https://padlet.com/njo/20171030_a2/wish/201638000</guid>
      </item>
      <item>
         <title>Rafeh</title>
         <author></author>
         <link>https://padlet.com/njo/20171030_a2/wish/201638104</link>
         <description><![CDATA[<div>i = 0<br>while (i &lt; array.length){<br>&nbsp; &nbsp; if (array[i] == targetValue){<br>&nbsp; &nbsp; &nbsp; &nbsp; print item found<br>&nbsp; &nbsp; }else{<br>&nbsp; &nbsp; &nbsp; &nbsp; i ++<br>&nbsp;&nbsp;&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-10-30 09:41:21 UTC</pubDate>
         <guid>https://padlet.com/njo/20171030_a2/wish/201638104</guid>
      </item>
      <item>
         <title>Matthew</title>
         <author></author>
         <link>https://padlet.com/njo/20171030_a2/wish/201638117</link>
         <description><![CDATA[<div>searchval=4<br>for(int i=0;i&lt;array.length;i++){<br>&nbsp; &nbsp; &nbsp;if(array[i]==searchval){<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; System.out.println(array[i]+"&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp; found at position "+I);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;break;<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-10-30 09:41:24 UTC</pubDate>
         <guid>https://padlet.com/njo/20171030_a2/wish/201638117</guid>
      </item>
      <item>
         <title>Daniel</title>
         <author></author>
         <link>https://padlet.com/njo/20171030_a2/wish/201638144</link>
         <description><![CDATA[<div>input targetNum<br>for i to array.length{<br>&nbsp; &nbsp;if(array[i]==targetNum)<br>&nbsp; &nbsp; &nbsp; return i&nbsp;<br><br>return-1</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-10-30 09:41:30 UTC</pubDate>
         <guid>https://padlet.com/njo/20171030_a2/wish/201638144</guid>
      </item>
      <item>
         <title>Ross Davidson</title>
         <author></author>
         <link>https://padlet.com/njo/20171030_a2/wish/201638146</link>
         <description><![CDATA[<div><br>n = user input<br>current = 0<br>last = array length<br>for (current != user input &amp;&amp; current &lt;= last)<br>      if current = user input{<br>             print item found in position current;<br>}<br>current ++;<br>}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-10-30 09:41:32 UTC</pubDate>
         <guid>https://padlet.com/njo/20171030_a2/wish/201638146</guid>
      </item>
      <item>
         <title>Nathan</title>
         <author></author>
         <link>https://padlet.com/njo/20171030_a2/wish/201638155</link>
         <description><![CDATA[<div>value = input<br>for(int i = 0; i&lt;array.length; i++){<br>&nbsp; &nbsp; if (array[i] == value){<br>&nbsp; &nbsp; &nbsp; &nbsp; System.out.println("Value found at position" + i);<br>&nbsp;</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-10-30 09:41:33 UTC</pubDate>
         <guid>https://padlet.com/njo/20171030_a2/wish/201638155</guid>
      </item>
      <item>
         <title>Subhan</title>
         <author></author>
         <link>https://padlet.com/njo/20171030_a2/wish/201638165</link>
         <description><![CDATA[<div><br>array&nbsp;&lt;-- [1, 4, 2, 5]<br>for i&nbsp;&lt;-- 0 to array.length:<br>&nbsp; &nbsp; if (array[i] = item):<br>&nbsp; &nbsp; &nbsp; &nbsp; Output "Item found at index " + i<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-10-30 09:41:36 UTC</pubDate>
         <guid>https://padlet.com/njo/20171030_a2/wish/201638165</guid>
      </item>
      <item>
         <title>Zac</title>
         <author></author>
         <link>https://padlet.com/njo/20171030_a2/wish/201638182</link>
         <description><![CDATA[<div>Array MyArray = [9,2,3,4]<br>TargetElement = 3<br><br>for i&lt;--1 to MyArray.length<br>&nbsp; &nbsp; if MyArray[i] == TargetElement<br>&nbsp; &nbsp; &nbsp; &nbsp; Then Output "Position" + i<br>&nbsp; &nbsp; endif<br>endfor<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-10-30 09:41:40 UTC</pubDate>
         <guid>https://padlet.com/njo/20171030_a2/wish/201638182</guid>
      </item>
      <item>
         <title>Pete</title>
         <author></author>
         <link>https://padlet.com/njo/20171030_a2/wish/201638201</link>
         <description><![CDATA[<div><br><br>input target<br>for i to length<br>&nbsp; &nbsp; &nbsp;if array[i] == target<br>&nbsp; &nbsp; &nbsp;return I<br>return -1<br>i++<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-10-30 09:41:44 UTC</pubDate>
         <guid>https://padlet.com/njo/20171030_a2/wish/201638201</guid>
      </item>
      <item>
         <title>Ellie</title>
         <author></author>
         <link>https://padlet.com/njo/20171030_a2/wish/201638416</link>
         <description><![CDATA[<div>int[] myArray = {a, b, c, d,.....};<br>Output: "What item would you like to find?";<br>Input n<br>Boolean found = false;<br>for(int i = 1; i&lt;=myArray.length; i++){<br>if(myArray[i]==n){<br>i = n+1;<br>Output: "Item found in position" + i<br>found = true<br>}<br>}<br>if (found = false){<br>Output: "Item not&nbsp;found"</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-10-30 09:42:34 UTC</pubDate>
         <guid>https://padlet.com/njo/20171030_a2/wish/201638416</guid>
      </item>
      <item>
         <title>Binary Search is best!!!!!!!!</title>
         <author></author>
         <link>https://padlet.com/njo/20171030_a2/wish/201639454</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2017-10-30 09:45:53 UTC</pubDate>
         <guid>https://padlet.com/njo/20171030_a2/wish/201639454</guid>
      </item>
      <item>
         <title>Binary video</title>
         <author></author>
         <link>https://padlet.com/njo/20171030_a2/wish/202853119</link>
         <description><![CDATA[<div><a href="https://youtu.be/0lF7WeV6sMY">https://youtu.be/0lF7WeV6sMY</a><br>Manr</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-11-02 12:12:07 UTC</pubDate>
         <guid>https://padlet.com/njo/20171030_a2/wish/202853119</guid>
      </item>
   </channel>
</rss>
