Skip to content
View hamzamuric's full-sized avatar
📚
Studying
📚
Studying

Organizations

@Nuh-Help @Ikigai-DOER @Conmisi
Block or Report

Block or report hamzamuric

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

  1. 100DaysOfCode 100DaysOfCode Public

    100 Days Of Coding Challange

    Kotlin 4

  2. Brainfuck-Interpreter Brainfuck-Interpreter Public

    Interpreter for Brainfuck programming language

    Rust 1

  3. Malgranda Malgranda Public

    Java

  4. Some functions' custom implementatio... Some functions' custom implementations in scheme
    1
    (define (my-map f l)
    2
      (if (eq? l '())
    3
    	  '()
    4
    	  (cons (f (car l)) (my-map f (cdr l)))))
    5
    
                  
  5. Factorize (n * x) + (n * y) to becom... Factorize (n * x) + (n * y) to become n * (x + y) and multiply_out to do reverse.
    1
    type expr =
    2
      | Plus of expr * expr
    3
      | Minus of expr * expr
    4
      | Times of expr * expr
    5
      | Divide of expr * expr
  6. Manual implementation of virtual dis... Manual implementation of virtual dispatch and virtual tables in C.
    1
    #include <stdlib.h>
    2
    #include <stdio.h>
    3
    
                  
    4
    typedef struct Animal {
    5
    	void (*say)(void *this);