274找到小镇的法官

Posted huoyingfans

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了274找到小镇的法官相关的知识,希望对你有一定的参考价值。

package test.leecode.intelligence;

import org.junit.Assert;
import org.junit.Test;

import cn.fansunion.leecode.intelligence.FindTheTownJudge;

/**
 * @author wen.lei@brgroup.com
 *
 *         2022-3-12
 */
public class FindTheTownJudgeTest

    @Test
    public void test()
        FindTheTownJudge test = new FindTheTownJudge();
        int junde1 = test.findJudge(1, new int[][] );
        Assert.assertEquals(1, junde1);
        
        int junde2 = test.findJudge(2, new int[][] 1, 2);
        Assert.assertEquals(2, junde2);
        
        int junde3 = test.findJudge(3, new int[][] 1,3,2,3);
        Assert.assertEquals(3, junde3);
        
        int jundeN1 = test.findJudge(3, new int[][] 1,3,2,3,3,1);
        Assert.assertEquals(-1, jundeN1);
   

 

以上是关于274找到小镇的法官的主要内容,如果未能解决你的问题,请参考以下文章

274找到小镇的法官

快乐水题997. 找到小镇的法官

《LeetCode之每日一题》:240.找到小镇的法官

快乐水题997. 找到小镇的法官

3593找到小镇的法官

LeetCode_997_找到小镇的法官