79290657

Date: 2024-12-18 09:54:22
Score: 1.5
Natty:
Report link
String withoutBrackets = List.of("a", "b").toString()
                                 .replaceAll("[]\\[]", "");
System.out.println(withoutBrackets );

//output: a, b

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Andy amurs