View on GitHub

leetcode-diaries

A journal to record the solution of the various Leetcode problems solved over the course of time.

DI String Match

Leetcode problem 942; Difficulty: Easy

Problem Statement

A permutation perm of n + 1 integers of all the integers in the range [0, n] can be represented as a string s of length n where:

Given a string s, reconstruct the permutation perm and return it. If there are multiple valid permutations perm, return any of them.

Constraints:

Example 1:

Input: s = "IDID"

Output: [0,4,1,3,2]

Example 2:

Input: "III"

Output: [0,1,2,3]

Example 3:

Input: "DDI"

Output: [3,2,0,1]

Submitted Solution

The implemented solution received the following rating on Leetcode:

image