Skip to content

Commit

Permalink
Fixed sonar
Browse files Browse the repository at this point in the history
  • Loading branch information
javadev committed Feb 25, 2025
1 parent 3c5fbae commit 832d035
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class Solution {
val xs = f(n - 2)
val arr = IntArray(n)
for (i in 0..<n) {
arr[i] = s.get(i).code - '0'.code
arr[i] = s[i].code - '0'.code
}
var num1 = 0
var num2 = 0
Expand Down

0 comments on commit 832d035

Please sign in to comment.