브랜치를 삭제하는 것은 영구적입니다. 되돌릴 수있는 방법이 없습니다.
- 이 작업은 취소할 수 없습니다.- 이 작업은 shadowmyths/ZCW-Lab-Fundamental-Methods:master 브랜치에 있는 모든 것을 영구히 삭제합니다.
shadowmyths/ZCW-Lab-Fundamental-Methods:master
에서 master
로 1 commits 를 머지하려 합니다
브랜치를 삭제하는 것은 영구적입니다. 되돌릴 수있는 방법이 없습니다.
- 이 작업은 취소할 수 없습니다.
Good job on the MathUtilities. For the PrediateUtilties, the comparison returns a boolean so you don't need the if statement.
By the way, your isLessThan will always return false and isLessThanOrEqualTo will always return true. The reason is because your if statement has the semicolon, that means that is the end of the statement. So the if statement doesn't do anything.
StringUtilities
It looks like you understood string concatenation because you add the "Hello" + " Java". Although this passes the test, the intent of that method is for you to use the input to add the Strings together like this:
For getSuffix, a better way to write it is
input.substring(input.length() - 3)
.You did all of this right, except you didn't use the input given. Please redo the homework using the arguments in the method.