Cerinta completa

Dothraki are planning an attack to usurp King Robert’s throne. King Robert learns of this conspiracy from Raven and plans to lock the single door through which the enemy can enter his kingdom.

door

But, to lock the door he needs a key that is an anagram of a palindrome. He starts to go through his box of strings, checking to see if they can be rearranged into a palindrome. Given a string, determine if it can be rearranged into a palindrome. Return the string YES or NO.

Example

One way this can be arranged into a palindrome is . Return YES.

Function Description
Complete the gameOfThrones function below.

gameOfThrones has the following parameter(s):

  • string s: a string to analyze

Returns

  • string: either YES or NO

Input Format

A single line which contains .

Constraints

  • |s|
  • contains only lowercase letters in the range

Sample Input 0

aaabbbb

Sample Output 0

YES

Explanation 0

A palindromic permutation of the given string is bbaaabb.

Sample Input 1

cdefghmnopqrstuvw

Sample Output 1

NO

Explanation 1

Palindromes longer than 1 character are made up of pairs of characters. There are none here.

Sample Input 2

cdcdcdcdeeeef

Sample Output 2

YES

Explanation 2

An example palindrome from the string: ddcceefeeccdd.


Limbajul de programare folosit: python3

Cod:

#!/bin/python3

from collections import Counter

def gameOfThrones(s):
    odd = sum(v % 2 for v in Counter(s).values())
    return 'YES' if odd <= 1 else 'NO'

if __name__ == '__main__':
    s = input().strip()
    print(gameOfThrones(s))

Scor obtinut: 1.0

Submission ID: 464591228

Link challenge: https://www.hackerrank.com/challenges/game-of-thrones/problem

Game of Thrones – I