Skip to content
View xycabcd's full-sized avatar

Block or report xycabcd

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

Pinned Loading

  1. lsfile lsfile Public

    Shell

  2. brewAyW/brew brewAyW/brew Public

    Forked from Homebrew/brew

    Homebrew but support multi-user

    Ruby

  3. Self writed Java ArrayList Self writed Java ArrayList
    1
    public class ArrayList implements Cloneable{
    2
        private Object[] list;
    3
        public void set(int index, Object content) {
    4
            if(list.length-1 < index) {
    5
                Object[] newList = new Object[index+1];