Конин Георгий/custom-sort-string

Материал из DISCOPAL
Версия от 19:35, 31 октября 2024; Конин Георгий (обсуждение | вклад) (Новая страница: «== Задача == * Leetcode/custom-sort-string == Код == <source lang="python"> class Solution: def customSortString(self, order: str, s: str) -> st…»)

(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Задача

Код

class Solution:
    def customSortString(self, order: str, s: str) -> str:
 
        sd = {}
        for ch in s:
            if ch in sd:
                sd[ch]+=1
            else:
                sd[ch]=1
 
        out=''
        for ch in order:
            if ch in s:
                out+=ch*sd[ch]
        for ch in s:
            if ch not in out:
                out+=ch*sd[ch]
 
        return out

Submission

https://leetcode.com/problems/custom-sort-string/submissions/1439307643/Check-me-animated.gif Решено: Конин Георгий 19:35, 31 октября 2024 (UTC)

[ Хронологический вид ]Комментарии

(нет элементов)

Войдите, чтобы комментировать.