Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Week 1/PerimeterAssignmentRunner.java
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public void testPerimeter () {
testFileWithLargestPerimeter();
}

// This method prints names of all files in a chosen folder that you can use to test your other methods
// This method prints names of all files in a chosen folder that you can use to test your other metho
public void printFileNames() {
DirectoryResource dr = new DirectoryResource();
for (File f : dr.selectedFiles()) {
Expand All @@ -147,6 +147,5 @@ public void printFileNames() {

public static void main (String[] args) {
PerimeterAssignmentRunner pr = new PerimeterAssignmentRunner();
pr.testPerimeter();
}
}
3 changes: 1 addition & 2 deletions Week2/Part1.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ public void testSimpleGene() {
}

public static void main (String[] args) {
Part1 gene = new Part1();
gene.testSimpleGene();

}
}
8 changes: 1 addition & 7 deletions Week4/BabyNames.java
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@

/**
* Final Project - Analyzing baby names data from 1880 to 2014
*
* @author (Tarek Mostafa)
* @version (0.1)
*/
import edu.duke.*;

import org.apache.commons.csv.*;
import java.io.*;
import java.util.*;
Expand Down