Skip to content
View TobiasKrok's full-sized avatar
  • Norway
  • 08:30 (UTC +02:00)
Block or Report

Block or report TobiasKrok

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

  1. Java Levenshtein implementation that... Java Levenshtein implementation that accepts a map of string to compare and calculates deviation
    1
    public static Map<String, Double> levenshtein(String value, List<String> otherValues, boolean caseSensitive) {
    2
            Map<String, Double> result = new HashMap<>();
    3
            char[] sourceArr = value.toCharArray();
    4
            int soureArrLength = sourceArr.length;
    5
            if(soureArrLength == 0) return result;
  2. musicr-io/react-use-spotify musicr-io/react-use-spotify Public

    A React Hook to create a Spotify web player using Spotify Web Playback SDK

    TypeScript 3