Kr Younger 8 лет назад
Родитель
Сommit
df8fc29919
2 измененных файлов: 7 добавлений и 11 удалений
  1. 4
    6
      Method Fundamentals/README.TXT
  2. 3
    5
      README.md

+ 4
- 6
Method Fundamentals/README.TXT Просмотреть файл

50
 
50
 
51
 ## Predicate Utilities
51
 ## Predicate Utilities
52
 * A _predicate_ is a clause which states something about a subject. (_e.g., **is assigning**_ in _"Leon **is assigning** homework"_)
52
 * A _predicate_ is a clause which states something about a subject. (_e.g., **is assigning**_ in _"Leon **is assigning** homework"_)
53
-* Ensure each of the test cases passes successfully in the class [TestPredicateUtilities](./src/test/java/com/zipcodewilmington/danny_do_better_exercises/TestPredicateUtilities.java) by completing each of the method stubs in the class [PredicateUtilities](./src/main/java/com/zipcodewilmington/danny_do_better_exercises/PredicateUtilities.java).
53
+* Ensure each of the test cases passes successfully in the class [TestPredicateUtilities](./Method\ Fundamentals/TestPredicateUtilities.java) by completing each of the method stubs in the class [PredicateUtilities](../Method\ Fundamentals/PredicateUtilities.java).
54
 * Method Stubs to be completed
54
 * Method Stubs to be completed
55
 	* `boolean isGreaterThan(int x, int y)`
55
 	* `boolean isGreaterThan(int x, int y)`
56
 	* `boolean isLessThan(int x, int y)`
56
 	* `boolean isLessThan(int x, int y)`
59
 
59
 
60
 
60
 
61
 ## Math Utilities
61
 ## Math Utilities
62
-* Ensure each of the test cases passes successfully in the class [TestMathUtilities](./src/test/java/com/zipcodewilmington/danny_do_better_exercises/TestMathUtilities.java) by completing each of the method stubs in the class [MathUtilities](./src/main/java/com/zipcodewilmington/danny_do_better_exercises/MathUtilities.java).
62
+* Ensure each of the test cases passes successfully in the class [TestMathUtilities](./Method\ Fundamentals/TestMathUtilities.java) by completing each of the method stubs in the class [MathUtilities](./Method\ Fundamentals/MathUtilities.java).
63
 * Method Stubs to be completed	
63
 * Method Stubs to be completed	
64
 	* `Integer add(int, int)`
64
 	* `Integer add(int, int)`
65
 	* `Long add(long, long)`
65
 	* `Long add(long, long)`
90
 
90
 
91
 
91
 
92
 ## String Utilities
92
 ## String Utilities
93
-* Ensure each of the test cases passes successfully in the class [TestStringUtilities](./src/test/java/com/zipcodewilmington/danny_do_better_exercises/TestStringUtilities.java) by completing each of the method stubs in the class [StringUtilities](./src/main/java/com/zipcodewilmington/danny_do_better_exercises/StringUtilities.java).
93
+* Ensure each of the test cases passes successfully in the class [TestStringUtilities](./Method\ Fundamentals/TestStringUtilities.java) by completing each of the method stubs in the class [StringUtilities](./Method\ FundaMentals/StringUtilities.java).
94
 * Method Stubs to be completed
94
 * Method Stubs to be completed
95
 	* `String concatenation(String, String)`
95
 	* `String concatenation(String, String)`
96
 	* `String concatenation(int, String)`
96
 	* `String concatenation(int, String)`
102
 	* `String getSecondWord(String)`
102
 	* `String getSecondWord(String)`
103
 	* `String reverse(String)`
103
 	* `String reverse(String)`
104
 	
104
 	
105
-	
106
-## Whats next?
107
-* The next lab can be found [here](https://github.com/Zipcoder/ZCW-MicroLabs-OOP-AliceAndBob).
105
+

+ 3
- 5
README.md Просмотреть файл

36
 
36
 
37
 ## Predicate Utilities
37
 ## Predicate Utilities
38
 * A _predicate_ is a clause which states something about a subject. (_e.g., **is assigning**_ in _"Leon **is assigning** homework"_)
38
 * A _predicate_ is a clause which states something about a subject. (_e.g., **is assigning**_ in _"Leon **is assigning** homework"_)
39
-* Ensure each of the test cases passes successfully in the class [TestPredicateUtilities](./src/test/java/com/zipcodewilmington/danny_do_better_exercises/TestPredicateUtilities.java) by completing each of the method stubs in the class [PredicateUtilities](./src/main/java/com/zipcodewilmington/danny_do_better_exercises/PredicateUtilities.java).
39
+* Ensure each of the test cases passes successfully in the class [TestPredicateUtilities](./Method\ Fundamentals/TestPredicateUtilities.java) by completing each of the method stubs in the class [PredicateUtilities](../Method\ Fundamentals/PredicateUtilities.java).
40
 * Method Stubs to be completed
40
 * Method Stubs to be completed
41
 	* `boolean isGreaterThan(int x, int y)`
41
 	* `boolean isGreaterThan(int x, int y)`
42
 	* `boolean isLessThan(int x, int y)`
42
 	* `boolean isLessThan(int x, int y)`
45
 
45
 
46
 
46
 
47
 ## Math Utilities
47
 ## Math Utilities
48
-* Ensure each of the test cases passes successfully in the class [TestMathUtilities](./src/test/java/com/zipcodewilmington/danny_do_better_exercises/TestMathUtilities.java) by completing each of the method stubs in the class [MathUtilities](./src/main/java/com/zipcodewilmington/danny_do_better_exercises/MathUtilities.java).
48
+* Ensure each of the test cases passes successfully in the class [TestMathUtilities](./Method\ Fundamentals/TestMathUtilities.java) by completing each of the method stubs in the class [MathUtilities](./Method\ Fundamentals/MathUtilities.java).
49
 * Method Stubs to be completed	
49
 * Method Stubs to be completed	
50
 	* `Integer add(int, int)`
50
 	* `Integer add(int, int)`
51
 	* `Long add(long, long)`
51
 	* `Long add(long, long)`
88
 	* `String getSecondWord(String)`
88
 	* `String getSecondWord(String)`
89
 	* `String reverse(String)`
89
 	* `String reverse(String)`
90
 	
90
 	
91
-	
92
-## Whats next?
93
-* The next lab can be found [here](https://github.com/Zipcoder/ZCW-MicroLabs-OOP-AliceAndBob).
91
+