You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
568 B

3 years ago
package main
/**
0 0
*/
func main() {
}
//type ListNode
/**
* Definition for singly-linked list.
* type ListNode struct {
* Val int
* Next *ListNode
* }
*/
//func addTwoNumbers(l1 *ListNode, l2 *ListNode) *ListNode {
// return nil
//}