()
| 103 | } |
| 104 | |
| 105 | @Override |
| 106 | public String toString() { |
| 107 | return "Problem{" + |
| 108 | "contestName='" + contestName + '\'' + |
| 109 | ", className='" + className + '\'' + |
| 110 | ", returnType='" + returnType + '\'' + |
| 111 | ", methodName='" + methodName + '\'' + |
| 112 | ", paramTypes=" + (paramTypes == null ? null : Arrays.asList(paramTypes)) + |
| 113 | ", paramNames=" + (paramNames == null ? null : Arrays.asList(paramNames)) + |
| 114 | ", testCases=" + (testCases == null ? null : Arrays.asList(testCases)) + |
| 115 | ", timeLimit=" + timeLimit + |
| 116 | ", memLimit=" + memLimit + |
| 117 | '}'; |
| 118 | } |
| 119 | } |
no outgoing calls