Skip to content

Commit 2ce1c6e

Browse files
refactor 369
1 parent 2a7a28a commit 2ce1c6e

File tree

1 file changed

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

1 file changed

+0
-16
lines changed

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

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,6 @@
22

33
import com.fishercoder.common.classes.ListNode;
44

5-
/**
6-
* 369. Plus One Linked List
7-
*
8-
* Given a non-negative integer represented as non-empty a singly linked list of digits, plus one to the integer.
9-
10-
You may assume the integer do not contain any leading zero, except the number 0 itself.
11-
12-
The digits are stored such that the most significant digit is at the head of the list.
13-
14-
Example:
15-
Input:
16-
1->2->3
17-
18-
Output:
19-
1->2->4
20-
*/
215
public class _369 {
226

237
public static class Solution1 {

0 commit comments

Comments
 (0)