瀏覽代碼

Update 'README.md'

git-leon 5 年之前
父節點
當前提交
133c2772e8
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      README.md

+ 2
- 2
README.md 查看文件

@@ -35,8 +35,8 @@ Write a method in the Arraz class for each of these:
35 35
 * to test if an integer array contains a specific value, pass both array and value as arguments `containsValue`
36 36
 * reverse an array of integer values `reverseArray`
37 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 40
 ```java
41 41
 public class OddEven{
42 42
     public int odds;