We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59a3734 commit 860dd92Copy full SHA for 860dd92
csharp/ToolGood.Algorithm2/Internals/CharUtil.cs
@@ -16,12 +16,12 @@ public static char StandardChar(char o)
16
if (o == '”') return '"';
17
if (o == '〔') return '(';
18
if (o == '〕') return ')';
19
- //if (o == '=') return '=';
20
- //if (o == '+') return '+';
21
- //if (o == '-') return '-';
+ if (o == '=') return '=';
+ if (o == '+') return '+';
+ if (o == '-') return '-';
22
if (o == '×') return '*';
23
if (o == '÷') return '/';
24
- //if (o == '/') return '/';
+ if (o == '/') return '/';
25
//if (o == '【') return '[';
26
//if (o == '】') return ']';
27
//if (o == '(') return '(';
0 commit comments