Skip to content
View jma02's full-sized avatar
:shipit:
Coding
:shipit:
Coding

Block or report jma02

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
jma02/README.md
github contribution grid snake animation

generated with Platane/snk

Competitive Programming Enjoyer

Some gists I find useful. https://gist.github.com/jma02

The following joke was generated daily by a hook written entirely by Copilot. Number of days since I have encountered an array index error: -1.

Pinned Loading

  1. pt. 2 pt. 2
    1
    let non_incident = [
    2
    (1,2);(2,1);(2,2);(3,2);(2,3);(3,1);(1,3);(0,2);(2,0)
    3
    ];;
    4
    
                  
    5
    let non_incident_neighborhood_sets = List.map neighbors non_incident;;
  2. Proving $SH$ is strongly regular wit... Proving $SH$ is strongly regular with parameters (16,6,2,2) pt. 1
    1
    module Pair_set = Set.Make (struct
    2
                                 type t = int * int
    3
                                 let compare = compare
    4
                               end);;
    5
    
                  
  3. Compute the independent sets of $SH^C$ Compute the independent sets of $SH^C$
    1
    let s = [(1,1);(3,3);(0,3);(0,1);(1,0);(3,0)];;
    2
    let s_c  = [
    3
    (1,2);(2,1);(2,2);(3,2);(2,3);(3,1);(1,3);(0,2);(2,0)
    4
    ];;
    5