Sort by

recency

|

202 Discussions

|

  • + 0 comments

    Is this broken? The Solution code only brings in the first test case. The T variable tells me there should be 2 cases but only one value for N and K come in. Is there something I need to do to get all the test cases?

  • + 0 comments

    Monitoring your Emirates ID status is easy with the UAE government’s online system. You can complete the process from the comfort of your own home, saving time and avoiding hassle. There's no requirement for any special registrations or passwords at https://smarttrekassist.ae/.

  • + 0 comments

    !/bin/python3

    import math import os import random import re import sys

    if name == 'main': t = int(input().strip())

    for i in range(t):
        first_multiple_input = input().rstrip().split()
        n = int(first_multiple_input[0])
        k = int(first_multiple_input[1])
        L = []
        L1 = []
        for i in range(n):
            L.append(i)
        l = 0
        r = n-1
        while l<r:
            L1.append(L[r])
            L1.append(L[l])
            l += 1
            r -= 1
        if l == r:
            L1.append(L[l])
        print(L1.index(k))
    
  • + 0 comments

    The Reverse Game challenge on HackerRank is such a fun puzzle to work through! I love how it really pushes you to think about the problem from a different angle and optimize your approach. Sometimes these logic-based challenges remind me of how different types of games can make you think strategically, even when you're just playing for fun. I’ve found apps like https://aviator-pinup.info/best-aviator-game-app do a great job of blending simple gameplay with a need for quick thinking, which is a cool way to keep the brain sharp when you need a break from coding but still want to stay engaged!

  • + 0 comments

    One line solution :)

    return k < n/2 ? (2*k + 1) : 2*(n - k - 1)