-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
bugSomething isn't workingSomething isn't working
Description
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"
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working