Skip to content

Commit e2b40e9

Browse files
committed
misc
1 parent 93f7fda commit e2b40e9

6 files changed

Lines changed: 38 additions & 8 deletions

File tree

content/notes/loops.adoc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,3 +103,10 @@ And we can raise a number to a given power as follows:
103103
include::{sourcedir}/Loops.java[tags=powerFor]
104104
----
105105

106+
== break and continue
107+
108+
== More examples
109+
110+
== Summary
111+
112+
== Exercises

html/notes/loops.html

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -691,12 +691,36 @@ <h2 id="_for_loop">3. for loop</h2>
691691
<span class="tok-o">}</span></code></pre>
692692
</div>
693693
</div>
694+
</div>
695+
</div>
696+
<div class="sect1">
697+
<h2 id="_break_and_continue">4. break and continue</h2>
698+
<div class="sectionbody">
699+
700+
</div>
701+
</div>
702+
<div class="sect1">
703+
<h2 id="_more_examples">5. More examples</h2>
704+
<div class="sectionbody">
705+
706+
</div>
707+
</div>
708+
<div class="sect1">
709+
<h2 id="_summary">6. Summary</h2>
710+
<div class="sectionbody">
711+
712+
</div>
713+
</div>
714+
<div class="sect1">
715+
<h2 id="_exercises">7. Exercises</h2>
716+
<div class="sectionbody">
717+
694718
</div>
695719
</div>
696720
</div>
697721
<div id="footer">
698722
<div id="footer-text">
699-
Last updated 2017-07-01 10:58:12 EDT
723+
Last updated 2017-07-02 00:44:40 EDT
700724
</div>
701725
</div>
702726
</body>

sessions/Fall2017/Module1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Module 1: Functions and Methods
33

44
## Materials
55
+ Notes
6-
* [Functions](../../html/notes/Functions.html) - And [Video](https://youtu.be/65cSKj8FpHA)
6+
* [Functions](http://okaram.github.io/IntroJava/html/notes/Functions.html) - And [Video](https://youtu.be/65cSKj8FpHA)
77
+ [Extra video = Intro - add](https://youtu.be/Wg1zXRuZUck)
88
+ [Extra video - isEven in CodingBat](https://youtu.be/IHFXy_5Zp68)
99
* [Functions on Strings](../../content/FunctionsOnStrings.md)

sessions/Fall2017/Module3.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@ Module 3: Conditionals
44
* [Conditionals](../../content/Conditionals.md)
55
+ [Switch statement](../../content/Switch.md)
66
* Videos
7-
+ [Lecture (Jun 8)](https://youtu.be/lmH3fjaW8e4) - We talked about git,gradle,eclipse and similar stuff at the beginning, then we covered if/else, switch and recursion
7+
+ [Lecture (Jun 8 2016)](https://youtu.be/lmH3fjaW8e4) - We talked about git,gradle,eclipse and similar stuff at the beginning, then we covered if/else, switch and recursion
88
+ [Recorded Lecture](https://youtu.be/y4fTxQ125Kc) - Spring 16 lecture, we talked about A2 and GitLab at the beginning, and then about conditionals (if and switch) and recursion.
99
+ [Conditionals](https://www.youtube.com/watch?v=dlwcV3WPtsc&list=UUSH2TieRlco7uQOGU8Vppnw) - From Dr Chastine
1010
+ [Switch Statement](https://www.youtube.com/watch?v=LizCC2SD_Pc&list=UUSH2TieRlco7uQOGU8Vppnw) - From Dr Chastine
1111
+ [The Function Stack]( https://www.youtube.com/watch?v=jRcll9qY6b0&list=UUSH2TieRlco7uQOGU8Vppnw) - From Dr Chastine
12-
+ [Recursion](https://www.youtube.com/watch?v=PORo1ut9kMs&list=UUSH2TieRlco7uQOGU8Vppnw) - From Dr Chastine
1312
* Book Chapters
1413
+ [Chapter 5 - Conditionals and Logic](http://greenteapress.com/thinkjava6/html/thinkjava6006.html)
1514
+ [Chapter 6 - Value methods](http://greenteapress.com/thinkjava6/html/thinkjava6007.html)

sessions/Fall2017/Module4.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
Module 4: Recursion
22
===
33
## Materials
4-
* [Recursion](../../content/Recursion.md)
4+
* [Recursion](http://okaram.github.io/IntroJava/html/notes/Recursion.html)
55
* [Conditionals](../../content/Conditionals.md) (if you need to review)
66
* Videos
7-
+ [Lecture (Jun 8)](https://youtu.be/lmH3fjaW8e4) - We talked about git,gradle,eclipse and similar stuff at the beginning, then we covered if/else, switch and recursion
8-
+ [Recorded Lecture](https://youtu.be/y4fTxQ125Kc) - Spring 16 lecture, we talked about A2 and GitLab at the beginning, and then about conditionals (if and switch) and recursion.
97
+ [Lecture Feb 8](https://youtu.be/Q4n6_9yo8_Q) - more conditionals and recursion
108
+ [Conditionals](https://www.youtube.com/watch?v=dlwcV3WPtsc&list=UUSH2TieRlco7uQOGU8Vppnw) - From Dr Chastine
119
+ [The Function Stack]( https://www.youtube.com/watch?v=jRcll9qY6b0&list=UUSH2TieRlco7uQOGU8Vppnw) - From Dr Chastine
1210
+ [Recursion](https://www.youtube.com/watch?v=PORo1ut9kMs&list=UUSH2TieRlco7uQOGU8Vppnw) - From Dr Chastine
11+
+ [Lecture (Jun 8)](https://youtu.be/lmH3fjaW8e4) - We talked about git,gradle,eclipse and similar stuff at the beginning, then we covered if/else, switch and recursion
12+
+ [Recorded Lecture](https://youtu.be/y4fTxQ125Kc) - Spring 16 lecture, we talked about A2 and GitLab at the beginning, and then about conditionals (if and switch) and recursion.
1313
* Book Chapters
1414
+ [Chapter 5 - Conditionals and Logic](http://greenteapress.com/thinkjava6/html/thinkjava6006.html)
1515
+ [Chapter 6 - Value methods](http://greenteapress.com/thinkjava6/html/thinkjava6007.html)

sessions/Fall2017/Module5.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Module 5: Loops
22
===
33
## Materials
4-
+ [Loops](../../content/Loops.md)
4+
+ [Loops](http://okaram.github.io/IntroJava/html/notes/loops.html)
55
+ [Sample code - Loops](../../Samples/src/main/java/okaram/samples/LoopSamples.java)
66
+ Book Chapters:
77
+ [Ch 7 - Loops](http://greenteapress.com/thinkjava6/html/thinkjava6008.html)

0 commit comments

Comments
 (0)