Quellcode durchsuchen

Update 'README.md'

git-leon vor 5 Jahren
Ursprung
Commit
133c2772e8
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2
    2
      README.md

+ 2
- 2
README.md Datei anzeigen

35
 * to test if an integer array contains a specific value, pass both array and value as arguments `containsValue`
35
 * to test if an integer array contains a specific value, pass both array and value as arguments `containsValue`
36
 * reverse an array of integer values `reverseArray`
36
 * reverse an array of integer values `reverseArray`
37
 * Make a method named `getOddEvensOfArray`
37
 * Make a method named `getOddEvensOfArray`
38
-* Method takes an argument of array of `Integer` objects
39
-* Method returns an object of type `OddEven` such that `OddEven` stores the number of `odds` and `evens` in the respective fields
38
+    * Method takes an argument of array of `Integer` objects
39
+    * Method returns an object of type `OddEven` such that `OddEven` stores the number of `odds` and `evens` in the respective fields
40
 ```java
40
 ```java
41
 public class OddEven{
41
 public class OddEven{
42
     public int odds;
42
     public int odds;