We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 107f405 commit 989abccCopy full SHA for 989abcc
Common/src/classes/NestedInteger.java
@@ -45,7 +45,7 @@ public List<NestedInteger> getList() {
45
return list;
46
}
47
48
- public String printNi(NestedInteger thisNi, StringBuilder sb){
+ public static String printNi(NestedInteger thisNi, StringBuilder sb){
49
if(thisNi.isInteger()) {
50
sb.append(thisNi.integer);
51
sb.append(",");
0 commit comments