Skip to content
Programmingoneonone - Logo
Programmingoneonone
  • Engineering Subjects
    • Internet of Things (IoT)
    • Computer System Architecture
    • Microprocessor
    • Digital Communication
    • Human Values
  • Programming Tutorials
    • C Programming
    • Data structures and Algorithms
    • 100+ Java Programs
    • 100+ C Programs
    • 100+ C++ Programs
  • Solutions
    • HackerRank
      • Algorithms Solutions
      • C solutions
      • C++ solutions
      • Java solutions
      • Python solutions
      • Data Structures Solutions
    • Leetcode Solutions
    • HackerEarth Solutions
  • Work with US
Programmingoneonone - Logo
Programmingoneonone

HackerEarth Xenny and Partially Sorted Strings problem solution

YASH PAL, 31 July 202414 February 2026
In this HackerEarth Xenny and Partially Sorted Strings problem solution Xenny had a list of N strings of equal length. He wanted to sort them by the first M characters only. That means, while sorting the list of strings, he only wanted to consider the first M characters of each string.
Help Xenny to find out the Kth string in the list after he sorts them.
 
Note: Xenny wanted to perform stable sorting.
Stable sorting algorithms maintain the relative order of records with equal keys (i.e. values). That is, a sorting algorithm is stable if whenever there are two records R and S with the same key and with R appearing before S in the original list, R will appear before S in the sorted list.
 
 
HackerEarth Xenny and Partially Sorted Strings problem solution

 

 

HackerEarth Xenny and Partially Sorted Strings problem solution.

t=input()
for x in xrange(t):
n,k,m=map(int,raw_input().split())
a,li=[],[]
for i in xrange(n):
a.append(raw_input())
li.append((a[i][:m],i))
li.sort()
print a[li[k-1][1]]
 

Second solution

T = int(raw_input()) # 5
for qq in xrange(T):
N, K, M = map(int, raw_input().split()) # 10**3
a = [raw_input() for i in xrange(N)] # len(s) = 10**3
a = sorted(a, key=lambda x: x[:M - 1])
print a[K-1]
 
coding problems solutions HackerEarth HackerEarth

Post navigation

Previous post
Next post

Leave a Reply

Your email address will not be published. Required fields are marked *

Programmingoneonone

We at Programmingoneonone, also known as Programming101 is a learning hub of programming and other related stuff. We provide free learning tutorials/articles related to programming and other technical stuff to people who are eager to learn about it.

Pages

  • About US
  • Contact US
  • Privacy Policy
  • DMCA

Practice

  • Java
  • C++
  • C

Follow US

  • YouTube
  • LinkedIn
  • Facebook
  • Pinterest
  • Instagram
©2026 Programmingoneonone | WordPress Theme by SuperbThemes