Skip to content
View mu8086's full-sized avatar
Block or Report

Block or report mu8086

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
mu8086/README.md

Hi there 👋

Pinned Loading

  1. LeetCode LeetCode Public

    https://leetcode.com/problemset/all/

    C 1

  2. rc rc Public

    bashrc, screenrc, vimrc, ..., etc.

    Shell

  3. [Bash] Dynamically expanded bash men... [Bash] Dynamically expanded bash menu that can call any function
    1
    #!/bin/bash
    2
    
                  
    3
    shopt -s extglob
    4
    
                  
    5
    SCRIPT_NAME="$(basename $0)"
  4. [C] List Reverse [C] List Reverse
    1
    int listReverse(struct ListNode** head) {
    2
        int node_count = 0;
    3
        struct ListNode *tmp = NULL, *walker = *head;
    4
        
    5
        if (walker != NULL) {
  5. [C] variadic free function [C] variadic free function
    1
    void doFree(void * allocate, ...) {
    2
        void *target = allocate;
    3
        
    4
        va_list args;
    5
        
  6. [C] 3dArray [C] 3dArray
    1
    char ***char3dArray(int length, int width, int height) {
    2
        // ret[height][width][length]
    3
        char ***ret = (char ***) malloc(sizeof(char **) * height + sizeof(char *) * height * width + sizeof(char) * height * width * length);
    4
    
                  
    5
        char **first_row = (char **)(ret + height);