Skip to content
View lornawanjiru's full-sized avatar
💭
👾 Coding
💭
👾 Coding
Block or Report

Block or report lornawanjiru

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. Data structure and algorithm notes. ... Data structure and algorithm notes. I have tackled a number of questions and realized i would forget some algorithms since I don't repeat the questions as much. I made this gist to help me go through the question intensively.
    1
    ##Longest Substring with At Most K Distinct Characters
    2
    var lengthOfLongestSubstringKDistinct = function(s, k) {
    3
        //incase the length of the string is the same or less than the distict number then return the length of the string.
    4
        if(k >= s.length ){
    5
            return s.length;
  2. myportfolio myportfolio Public

    Used Next js in developing my simple portfolio. I used it to learn how to implement some animation. It still not the complete output but it works. Can comment or give me feedbacks.

    JavaScript 1