This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Copy using arraycopy | |
| fun catTwoIntArrays1(array1 :IntArray, array2 :IntArray) : IntArray { | |
| val newArray = IntArray(array1.size + array2.size) | |
| System.arraycopy(array1, 0, newArray, 0 , array1.size) | |
| System.arraycopy(array2, 0, newArray, array1.size , array2.size) | |
| return newArray | |
| } | |
| //Copy using for loops | |
| fun catTwoIntArrays2(array1 :IntArray, array2 :IntArray) : IntArray { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "accountIDVStatus":"PASS", | |
| "creditReportInfo":{ | |
| "score":547, | |
| "scoreBand":4, | |
| "clientRef":"CS-SED-655426-708782", | |
| "status":"MATCH", | |
| "maxScoreValue":700, | |
| "minScoreValue":0, | |
| "monthsSinceLastDefaulted":-1, |
NewerOlder