Ad
  • Custom User Avatar

    You should check your Big O Notation (O) of your algorithm, if it is O(n^2) then your code will got an erro timed out.
    The complex of algorithm should be O(n) or O(nLog(n))

  • Custom User Avatar

    That's not a kata bug, it's your code's problem:

    Performance needs to be considered