We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
  • Practice
  • Certification
  • Compete
  • Career Fair
  • Hiring developers?
  1. Practice
  2. Algorithms
  3. Implementation
  4. Encryption
  5. Discussions

Encryption

Problem
Submissions
Leaderboard
Discussions
Editorial

Sort 1067 Discussions, By:

votes

Please Login in order to post a comment

  • Schuetzl 5 years ago+ 0 comments

    I see a lot of people in the discussions are using a 2d array, did anyone else solve it by simply iterating through the input string? Is there a difference in efficiency? All of my submissions were 0.09s of quicker (using Java). Is there a better way to do it?

    57|
    Permalink
  • samar5yadav 4 years ago+ 0 comments
    import math
    s=input()
    sm=s.replace(" ","")
    r=math.floor(math.sqrt(len(sm)))
    c=math.ceil(math.sqrt(len(sm)))
    for i in range(c):
        print(sm[i::c],end=" ")
    

    short and sweet. that's why you gotta love python

    50|
    Permalink
  • saurabh_jasper 4 years ago+ 0 comments

    image

    image

    why is this happening?

    22|
    Permalink
  • sujithvm 6 years ago+ 0 comments

    http://ideone.com/1zvv4T

    This is the solution i submitted. Can anyone please tell me why ideone is giving correct answer for TestCase 1 and Hackerrank is giving a different answer. No difference in code

    TestCase : feedthedog
    Ideone output : fto ehg ee dd
    Hackerrank editor output : fto ehg ee
    
    11|
    Permalink
  • StopAsh12 6 years ago+ 0 comments

    hey what does poosible square with the minimum have to do with this,as i think there are going to be only two square.ceiling and floor of an integer are going to be two consecutive number,following the constraints one can be increased and the other can only be decreased.so there are going to be only 2 square.The language of the question could have been easy to understand.

    8|
    Permalink
Load more conversations

Need Help?


View editorial
View top submissions
  • Contest Calendar
  • Blog
  • Scoring
  • Environment
  • FAQ
  • About Us
  • Support
  • Careers
  • Terms Of Service
  • Privacy Policy
  • Request a Feature