생활
자바 테스트했을 때 1,2,3,4,null 요런식으로 나와야하는데 안나옵니다 뭐가 문제인가요?
자바입니다.
static boolean NodeInt append(NodeInt ys){ return (xs==null)? ys : xs.append(ys); } return new NodeInt (head(), append(tail(),null); }
이거를 테스트했을 때 1,2,3,4,null 요런식으로 나와야하는데 안나옵니다 뭐가 문제인가요?
아직 답변이 없어요.