Skip to content
View quijoo's full-sized avatar

Block or report quijoo

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
quijoo/README.md

Hi, I'm _quijoo

Game Dev Beginner, A Students of CQU

edisonlee55's github stats

A gift for you...

struct ListNode *getIntersectionNode(struct ListNode *headA, struct ListNode *headB) {
    if (headA == NULL || headB == NULL) {
        return NULL;
    }
    struct ListNode *pA = headA, *pB = headB;
    while (pA != pB) {
        pA = pA == NULL ? headB : pA->next;
        pB = pB == NULL ? headA : pB->next;
    }
    return pA;
}

Popular repositories Loading

  1. complier complier Public

    Python 2

  2. birthday-wishes birthday-wishes Public

    HTML

  3. quijoo quijoo Public

  4. minesweeping-ai minesweeping-ai Public

    Python

  5. life-game life-game Public

    C#

  6. leetcode-practices leetcode-practices Public

    Python