Skip Navigation
102 comments
  • TDD

     undefined
        
    const max12 = (x, y) => {
        if (x === 1 && y === 2) {
            return 2;
        } else if (x === 7 && y === 4) {
            return 7;
        } else {
            return x;
        }
    };
    
      
  • Procrastinator.

    Okay, but seriously: "Thief". Why reimplement it if it’s already available in the language?

  • Otherwise, realistically, I’m prob the worst of all worlds … the procrastinator waiting/hoping to be the pair programmer that has hopefully remembered to just be the thief.

102 comments