Originally posted on reddit seven months ago.

  • The Quuuuuill
    link
    fedilink
    arrow-up
    21
    arrow-down
    1
    ·
    1 year ago
    if (a < b) {
        return true;
    } else if (b < a) {
        return false;
    } else {
        return "A == B, bro"
    }
    
    • nodiet@feddit.de
      link
      fedilink
      arrow-up
      2
      ·
      1 year ago

      That is literally how we implemented an algorithm to check for equivalence in a privacy preserving way. Only that you can’t check the results of the evaluation so you have to do 1-(a<b)-(b<a)