• Venator@lemmy.nz
    link
    fedilink
    arrow-up
    0
    ·
    edit-2
    1 month ago

    Why would you want a specific time complexity? Wouldn’t it be better if it’s faster? /s

    • JaddedFauceet@lemmy.world
      link
      fedilink
      arrow-up
      0
      ·
      1 month ago

      Likely they want a lower time complexity.

      for example a question can be trivially solved in O(n^2). but there is no know < O(n) solution, so they ask for O(n)

      • Tiefling IRL@lemmy.blahaj.zone
        link
        fedilink
        arrow-up
        2
        ·
        edit-2
        1 month ago

        Most of the time O(n^2) is optimized to O(n log n). You’ll get some sort of award if you can figure out a sorting function that runs in O(n).