Skip to content
View aestheticsdata's full-sized avatar

Block or report aestheticsdata

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. pfa-sql pfa-sql Public

    JavaScript

  2. 3d-engine-light-2021 3d-engine-light-2021 Public

    TypeScript

  3. string-compression--run-length-encod... string-compression--run-length-encoding.js
    1
    const s = "aaaa bbbbb faffccca ddddddd dddddddddd nn";
    2
    
                  
    3
    const compress = s => [...s].reduce((acc, curr, idx, arr) => {
    4
        if (idx !== 0) {
    5
          if (arr[idx] === arr[idx - 1]) {
  4. conway-gol conway-gol Public

    Conway's game of life Typescript

    TypeScript

  5. SPAquizMongoAngularJS SPAquizMongoAngularJS Public

    JavaScript

  6. compare semver compare semver
    1
    my own solution to an interview coding challenge: https://raulmelo.dev/blog/i-failed-an-interview-because-of-an-algorithm
    2
    
                  
    3
    const versions = [
    4
        "1.3.0.9",
    5
        "0.2.0",