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 2a7a28a commit 2ce1c6eCopy full SHA for 2ce1c6e
src/main/java/com/fishercoder/solutions/_369.java
@@ -2,22 +2,6 @@
2
3
import com.fishercoder.common.classes.ListNode;
4
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
- */
21
public class _369 {
22
23
public static class Solution1 {
0 commit comments