Skip to content
View SimonFJ20's full-sized avatar

Highlights

  • Pro

Block or report SimonFJ20

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

I don't know what to put here.

My Website

Artisan Solutions

fib :: Number
fib 0 = 0
fib 1 = 1
fib n = fib (n-1) + fib (n-2)
json    ->  object |   array
object  ->  "{" (pair ("," pair):*):? "}"
pair    ->  %string ":" value
list    ->  "[" (value ("," value ):*):? "]"
value   ->  object | list | string | number | "null" | "false" | "true"
const CHARS = 'plmonkij9buvhyc2gtxfr5zde3sw1aqZX4CASDQ0WEVBN7FGHRTYM6JKLU8IOP';
const randchar = (chars: string = CHARS): string => 
    chars.charAt(Math.floor(Math.random() * chars.length));
const randstr = (length: number, chars: string = CHARS): string => 
    length > 0 ? randchar(chars) + randstr(length - 1, chars) : '';

Pinned Loading

  1. binary-trees-in-c binary-trees-in-c Public

    Binary Tree functions in C

    C

  2. brainfuck-in-rust brainfuck-in-rust Public

    Efficient Brainfuck Interpreter in Rust

    Rust

  3. json-parser-in-typescript json-parser-in-typescript Public

    A JSON Parser in TypeScript

    TypeScript

  4. json-parser-with-nearley json-parser-with-nearley Public

    A JSON Parser in Javascript using the Nearlay parser generator.

    Nearley

  5. olang olang Public

    Stack based programming language

    Python

  6. calculator-with-nearley calculator-with-nearley Public

    CLI calculator made with Nearley and NodeJS

    Nearley