Skip to content
View kelvingraddick's full-sized avatar

Block or report kelvingraddick

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. Snippeta-app Snippeta-app Public

    Source code for the "Snippeta" iOS/Android mobile app

    JavaScript

  2. react-native-fancy-action-sheet react-native-fancy-action-sheet Public

    A better looking, more functional action sheet for React Native apps

    JavaScript 1

  3. Foamlicious-app Foamlicious-app Public

    Cross-platform (iOS/Android) application for Foamlicious; the ultimate app for Foamposite shoes.

    JavaScript

  4. DOCme-API DOCme-API Public

    The web-based API that supports the DOCme platform. Built with Express.js to run in the Node.js runtine environment.

    JavaScript 1 1

  5. Solution to the coding challenge on ... Solution to the coding challenge on Leetcode.com called Unique Number of Occurrences (https://leetcode.com/problems/unique-number-of-occurrences/)
    1
    /**
    2
     * Unique Number of Occurrences: Given an array of integers 'arr', return 'true' if the number of occurrences of each value in the array is unique or 'false' otherwise.
    3
     * 
    4
     * Intuition / tip:
    5
     * Use a hashmap to store the frequency of each character, then use a set to check for duplicates
  6. Here is the problem and solution to ... Here is the problem and solution to a coding challenge from Leetcode.com called Remove Duplicates from Sorted Array!
    1
    /**
    2
     * @param {number[]} nums
    3
     * @return {number}
    4
     */
    5
    const removeDuplicates = function(nums) {