Leecode Add Two Numbers(Java版)

/** * * @author WF帆少 * @微信 13025261795 * */ class Solution { public static int getListNodeLength(ListNode l) { int length = 0; while (l != null) { length++; l = l.next; } return
相關文章
相關標籤/搜索