Skip to content

Commit d078e87

Browse files
refactor 423
1 parent 62afbe9 commit d078e87

File tree

1 file changed

+0
-20
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+0
-20
lines changed

src/main/java/com/fishercoder/solutions/_423.java

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,5 @@
11
package com.fishercoder.solutions;
22

3-
/**
4-
* 423. Reconstruct Original Digits from English
5-
*
6-
* Given a non-empty string containing an out-of-order English representation of digits 0-9, output the digits in ascending order.
7-
8-
Note:
9-
Input contains only lowercase English letters.
10-
Input is guaranteed to be valid and can be transformed to its original digits. That means invalid inputs such as "abc" or "zerone" are not permitted.
11-
Input length is less than 50,000.
12-
13-
Example 1:
14-
Input: "owoztneoer"
15-
16-
Output: "012"
17-
Example 2:
18-
Input: "fviefuro"
19-
20-
Output: "45"
21-
22-
*/
233
public class _423 {
244

255
public static class Solution1 {

0 commit comments

Comments
 (0)