Enhancer Version
1.0.2
Java Version
JDK 21
Description
When the algorithm returns results that contain some results that can be escaped,
the enhancer prints the escaped results instead of the expected original results.
For example:
Algorithm result: "str=123"
Actual printing: "str \ u003d 123"
Expected printing: "str=123"
Reproduction steps
Testing Code
public class Test extends LeetcodeJavaDebugEnhancer {
class Solution {
public String eval(String str) {
return "str = " + str;
}
}
}
Input Case
"123"
Output Result
"str = 123"
Actual Printing
"str \ u003d 123"
Expected Printing
"str = 123"