Skip to content
View EnesKorukcu's full-sized avatar
🎯
🎯
  • Amsterdam

Block or report EnesKorukcu

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Import swagger json into postman Import swagger json into postman
    1
    //
    2
    // This script creates a postman.json file from swagger.json which can be imported into postman.
    3
    // 1. Replace "YOUR_PROJECT_URL" with real url which points to swagger.json.
    4
    // 2. Give permission to run: "chmod +x swagger_json_to_postman_json.sh"
    5
    // 3. Execute the script: "./swagger_json_to_postman_json.sh"
  2. Given two strings, write a method to... Given two strings, write a method to decide if one is a permutation of the other.
    1
    /**
    2
     * Solution 1
    3
     * @param str1
    4
     * @param str2
    5
     * @return boolean
  3. Implement a method to perform basic ... Implement a method to perform basic string compression using the counts of repeated characters. For example, the string aabcccccaaa would become a2blc5a3. If the "compressed" string would not become smaller than the original string, your method should return the original string.
    1
    /**
    2
     * Solution 1
    3
     * Bad Solution
    4
     * Time Complexity: 0(p + k2), where p is the size of the original string and k is the number of character sequences
    5
     */
  4. Implement an algorithm to determine ... Implement an algorithm to determine if a string has all unique characters. What if you cannot use additional data structures ?
    1
    /**
    2
     * Solution 1
    3
     * Time Complexity : O(n) where n is the length of the string
    4
     * Space Complexity : O(1)
    5
     * @param input