Find HackerRank

Sort by

recency

|

904 Discussions

|

  • + 0 comments

    That’s an interesting coding problem — it really tests how well you handle string manipulation and conditions! I solved a similar one recently while studying algorithms. It’s all about checking the first and last word efficiently.

    By the way, while browsing for practice problems, I came across Dave’s Hot Chicken UK— not related to coding 😅 but a great example of how simple ideas (like this challenge) can grow into something huge with the right approach and branding!

  • + 1 comment

    Interesting discussion here! I’ve always enjoyed exploring how different users approach coding challenges on HackerRank it’s a great way to learn from diverse problem-solving methods. The community explanations often help clarify tricky logic that official tutorials sometimes skip.

    Also, for anyone looking to take a short creative break between coding sessions, these free printable cat coloring pages are a relaxing way to recharge your mind!

  • + 0 comments

    While this thread focuses on Filmore, I thought I'd share a tip from the 3D printing world. Ensuring that your 3D printing software is properly connected to your printer can prevent errors and improve performance. For instance, learning how to connect Orca Slicer to printer can streamline your printing process and reduce potential issues.

  • + 0 comments
    import re
    for _ in range(int(input())):
        n=input()
        if re.findall(r"^hackerrank.+",n):
            print(1)
        elif re.findall(r"^.+hackerrank$",n):
            print(2)
        elif re.findall(r"^hackerrank$",n):
            print(0)
        else:
            print(-1)
        
        
    		
    
  • + 0 comments

    HackerRank is a well-known platform for competitive coding and technical assessments, widely used by developers and companies to practice and evaluate programming skills (Wikipedia ). It offers challenges in algorithms, data structures, AI, and more, helping learners improve problem-solving while giving recruiters a reliable hiring tool. On a lighter note, just like exploring coding challenges on HackerRank, browsing through the jackinthebox-menu also offers a variety of choices that fit different tastes and needs.