Description

No description, yet. Stay tuned!

General Information

No information, yet. Stay tuned!

Announcements

Open recitations ON for Monday 3/17
03/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
02/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
01/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

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

Homework

Nothing has been added to the Homework section, yet. Stay tuned!

Lecture Notes

Nothing has been added to the Lecture Notes section, yet. Stay tuned!

General Resources

Nothing has been added to the General Resources section, yet. Stay tuned!