Skip to content
View martatofan's full-sized avatar

Block or report martatofan

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. SmartContract SmartContract Public

    Solidity

  2. DEX.github.io DEX.github.io Public

    JavaScript

  3. theBiggestBinaryGap.js theBiggestBinaryGap.js
    1
    /*
    2
    A binary gap within a positive integer N is any maximal sequence of consecutive zeros that is surrounded by ones at both ends in the binary representation of N.
    3
    4
    For example, number 9 has binary representation 1001 and contains a binary gap of length 2. The number 529 has binary representation 1000010001 and contains two binary gaps: one of length 4 and one of length 3. The number 20 has binary representation 10100 and contains one binary gap of length 1. The number 15 has binary representation 1111 and has no binary gaps. The number 32 has binary representation 100000 and has no binary gaps.
    5
  4. missingItem.js missingItem.js
    1
    function solution(A) {
    2
     /*
    3
     Write a function:
    4
    5
    function solution(A);
  5. arithmeticOperators.js arithmeticOperators.js
    1
    /*
    2
    Task
    3
    Given the meal price (base cost of a meal), tip percent (the percentage of the meal price being added as tip), and tax percent (the percentage of the meal price being added as tax) for a meal, find and print the meal's total cost. Round the result to the nearest integer.
    4
    5
    Function Description