int cat1 = 0;
        int cat2 = 0;
        if (this.age > anotherCat.age)
        {
            cat1++;
        }
        else if(this.age < anotherCat.age)
        {
            cat2++;
        }
        else if (this.age == anotherCat.age)
        {
            return false;
        }
        if(this.weight > anotherCat.weight)
        {
            cat1++;
        }
        else if(this.weight < anotherCat.weight)
        {
            cat2++;
        }
        else if (this.weight == anotherCat.weight)
        {
            return false;
        }
        if(this.strength > anotherCat.strength)
        {
            cat1++;
        }
        else if(this.strength < anotherCat.strength)
        {
            cat2++;
        }
        else if(this.strength == anotherCat.strength)
        {
            return false;
        }

        if (cat1 > cat2){
            return true;
        }
        else
            return false;