Ad
  • Custom User Avatar

    You can see from the second example the order is left to right:

    queueTime([10,2,3,3], 2)
    // should return 10
    // because here n=2 and the 2nd, 3rd, and 4th people in the 
    // queue finish before the 1st person has finished.
    
  • Custom User Avatar

    I was confused by this as well! The queue reads left-to-right and not right-to-left.

    The front person in the queue (i.e. the first element in the array/list) proceeds to a till as soon as it becomes free.
    
  • Custom User Avatar

    2 and 3 go to different tills. Read the description again.

  • Custom User Avatar

    why
    queue_time([2,3,10], 2)

    should return 12

    first checkout working 2 + 3 == 5 times
    and
    second checkout working 10 times
    10 biggest than 5 and should give 10. but correct answer is 12 :/

  • Custom User Avatar

    Very interesting Kata! Thanks to author!!!

  • Custom User Avatar

    This comment is hidden because it contains spoiler information about the solution

  • Custom User Avatar

    Very nice kata to solve!

  • Custom User Avatar

    as far as i'm concerned, i dont care about how clean the top solutions are. what's important is that i was able to solve the prob, and it has the same time complexity as the top solutions... don't care about anything else. I think you should just enjoy the fact that you were able to solve the problem with good time complexity. as for ur other comment, i don't think it's that impressive, and nope i ain't got experience already.ido think anybody can do it, just focus and take challenges as an opportunity to learn... thts my strategy

  • Custom User Avatar

    Btw you are 6 kyu by just solving 55 kata, which is rare and impressive.
    Did you already have experience before you started codewars which helped you solve higher kata(more score point) earlier and rank up quickly.

    Or were you beginner and yet you just went ahead and solved higher level kata.

  • Custom User Avatar

    This comment is hidden because it contains spoiler information about the solution

  • Custom User Avatar

    i don’t think it’s a spoiler, but as soon as you imagine the scenario, the solution will be very clear...anywy go get em

  • Custom User Avatar

    Immediately came to the discussion after understanding that it's a good kata. I wonder how long i will take.

  • Custom User Avatar

    just solved it. took me 5 hours!

  • Custom User Avatar

    You're wrong, you're not following all the rules from this kata.

  • Custom User Avatar

    U solved a 2KYU prob and came to this prob to show how smart u r, and ended up getting humbled! It should be a 5KYU tho, imo.

  • Loading more items...