Find HackerRank

Sort by

recency

|

901 Discussions

|

  • + 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.

  • + 0 comments

    Regex applications are widely used in text processing, data validation, and search algorithms, making them an essential skill in programming challenges like those on HackerRank. As Wikipedia explains, regular expressions provide a powerful method to match patterns efficiently across diverse tasks. In the same way, organized resources like panda express-menuprices help users quickly find menu details, food options, and meal prices without confusion.

  • + 7 comments

    I was solving this challenge and realized CPU/GPU performance can also affect how fast you can test large inputs locally. If anyone’s interested in checking whether their system has a bottleneck issue, you can try this simple tool: PC Bottleneck Calculator . It helped me optimize my setup before running heavy test cases.

  • + 2 comments

    HackerRank is a widely used platform for coding practice, technical assessments, and competitive programming, offering challenges in various programming languages and domains. According to Wikipedia, it enables developers to improve their skills while allowing companies to evaluate candidates efficiently through coding tests and contests. For tech professionals seeking quick meal options during intensive coding sessions, exploring the Wendy's menu with prices 2025 with pictures can be a convenient way to plan satisfying and timely meals.