[LeetCode] Sum of Absolute Differences in a Sorted Array

1685. Sum of Absolute Differences in a Sorted Array

You are given an integer array nums sorted in non-decreasing order.

Build and return an integer array result with the same length as nums such that result[i] is equal to the summation of absolute differences between nums[i] and all the other elements in the array.

In other words, result[i] is equal to sum(|nums[i]-nums[j]|) where 0 <= j < nums.length and j != i (0-indexed).

Read more
[LeetCode] Unique Morse Code Words

804. Unique Morse Code Words

International Morse Code defines a standard encoding where each letter is mapped to a series of dots and dashes, as follows:

  • ‘a’ maps to “.-“,
  • ‘b’ maps to “-…”,
  • ‘c’ maps to “-.-.”, and so on.

For convenience, the full table for the 26 letters of the English alphabet is given below:

1
[".-","-...","-.-.","-..",".","..-.","--.","....","..",".---","-.-",".-..","--","-.","---",".--.","--.-",".-.","...","-","..-","...-",".--","-..-","-.--","--.."]

Given an array of strings words where each word can be written as a concatenation of the Morse code of each letter.

  • For example, “cab” can be written as “-.-..—…”, which is the concatenation of “-.-.”, “.-“, and “-…”. We will call such a concatenation the transformation of a word.

Return the number of different transformations among all words we have.

Read more
[AtCoder] C - pushpushRead more
[AtCoder] D - InsertionRead more
[AtCoder] C - Colorful LeaderboardRead more
[AtCoder] C - Reconciled?Read more
[AtCoder] B - Trained?Read more
[Codeforces] Educational Round 106 (Rated for Div. 2) C. Minimum Grid PathRead more
[Codeforces] Round #710 (Div. 3) E. Restoring the PermutationRead more
[Codeforces] Global Round 14 D. Phoenix and SocksRead more