Skip to content

Commit ba88379

Browse files
committed
Fixed sonar
1 parent 97ca026 commit ba88379

File tree

1 file changed

+2
-2
lines changed
  • src/main/kotlin/g3601_3700/s3602_hexadecimal_and_hexatrigesimal_conversion

1 file changed

+2
-2
lines changed

src/main/kotlin/g3601_3700/s3602_hexadecimal_and_hexatrigesimal_conversion/Solution.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Solution {
1818
}
1919
}
2020
for (i in tmp.length - 1 downTo 0) {
21-
st.append(tmp.get(i))
21+
st.append(tmp[i])
2222
}
2323
tmp = StringBuilder()
2424
t = n * n * n
@@ -32,7 +32,7 @@ class Solution {
3232
}
3333
}
3434
for (i in tmp.length - 1 downTo 0) {
35-
st.append(tmp.get(i))
35+
st.append(tmp[i])
3636
}
3737
return st.toString()
3838
}

0 commit comments

Comments
 (0)