Description

No description, yet. Stay tuned!

General Information

No information, yet. Stay tuned!

Announcements

Open recitations ON for Monday 3/17
3/17/14 1:29 AM

Welcome back from spring break! Recitations ARE happening today. If you belong in a Sunday recitation (which was cancelled because of break), feel free to attend any of the recitation sections today. The TAs will be talking about recursive methods.


Today's recitation sections are:
11:00-12:00 Ridgley 401

1:00-2:00 Green L0159
2:00-3:00 Eads 116
3:00-4:00 Eads 116
4:00-5:00 Eads 116
5:00-6:00 Eads 103

Part V, Question 4 Spring 2013 Exam
2/23/14 9:22 PM

The answer for question 4 on Part V needs to be modified on the Answer Key.
Sorry about that!!!

The answer should be as follows :)

public static int getLongestRun(int [] values){

        int longestRunIndex = -1;
        int curRunIndex = 0;
        int longestRunLength = 1;
        int curRunLength = 1;

        for (int i = 1; i < values.length; i++){

              if (values [i-1] == values [i]){
                      curRunLength++;
              } else {

                      if (curRunLength > longestRunLength){
                                 longestRunLength = curRunLength;
                                 longestRunIndex = curRunIndex;
                      }

                      curRunLength = 1;
                      curRunIndex = i;
             }
       }

       return longestRunIndex;
}

SVN Connectors Issue with Eclipse
1/21/14 3:50 PM

Some people have been having an issue with missing SVN connectors when attempting to check out their SVN repositories. This is a tutorial to resolve that problem.

Method 1:

1. Open Eclipse

2. Under Help, click "Install New Software..."

3. Click "Add" near the URL bar

4. Paste in the URL for the SVN connector sources: http://community.polarion.com/projects/subversive/download/eclipse/3.0/kepler-site/

5. Give it a descriptive name

6. Click "Ok"

7. Check both boxes that appear in the window

8. Keep clicking next until you get to the license agreement page

9. Click agree

10. Click finish

Method 2:

1. Download this: http://community.polarion.com/projects/subversive/download/eclipse/4.0/builds/Subversive-connectors-4.0.0.I20131101-1700.zip

2. Merge the downloaded folder with your root Eclipse folder

After either of these methods, make sure you restart Eclipse. If the issue still persists, you will need to delete your workspace directory (which is found by default in the "Documents" folder on OSX, and "My Documents" on Windows).

#pin
Staff Office Hours
NameOffice Hours
Daniel Kras
When?
Where?
Rachel Blake
When?
Where?
Jessica Graham
When?
Where?
Samuel Shields
When?
Where?
Margaret Lewis
When?
Where?
Amy Li
When?
Where?
Jake Ritchken
When?
Where?
Wesley Pawson
When?
Where?
Aarthi Arunachalam
When?
Where?
Brian Choi
When?
Where?
Justin Zheng
When?
Where?
Daniel Weinstein
When?
Where?
Dana Arditti
When?
Where?
Steven Bosch
When?
Where?
Kyle Liu
When?
Where?
Silas Hsu
When?
Where?
Sean Carney
When?
Where?
Sam Donohue
When?
Where?
Yuwen Memon
When?
Where?
Isaias Suarez
When?
Where?
Alec Shearer
When?
Where?
Rachel Neubert
When?
Where?
Corey Elowsky
When?
Where?
Ze'ev Lailari
When?
Where?
Prateek Gupta
When?
Where?
Joshua Landman
When?
Where?
Will Strauss
When?
Where?
daniel douglass
When?
Where?
Ignacio de Erausquin
When?
Where?
Michael Liu
When?
Where?
Katie Ford
When?
Where?
Kjartan Brownell
When?
Where?
Hope Jasperson
When?
Where?
Cameron Wong
When?
Where?
Jonathan Dallas
When?
Where?
jason.li@wustl.edu
When?
Where?
Daniel Drabinski
When?
Where?
John Kubinak
When?
Where?
Kevin Huang
When?
Where?
Cameron Wong
When?
Where?
Osman Ulug
When?
Where?
Benjamin Berman
When?
Where?
Gabe
When?
Where?
Roger Iyengar
When?
Where?

Homework

Lecture Notes

General Resources