[코딩뱃] [자바] Warmup - 2단계 : array123 문제
https://codingbat.com/prob/p136041 CodingBat Java Warmup-2 array123 Given an array of ints, return true if the sequence of numbers 1, 2, 3 appears in the array somewhere.array123([1, 1, 2, 3, 1]) → truearray123([1, 1, 2, 4, 1]) → falsearray123([1, 1, 2, 1, 2, 3]) → trueGo...Save, Compile, Run (ctrl-enter)Show Solutio codingbat.com = 문제 번역 = int 배열이 주어지면 배열의 요소에서 1, 2, 3이라는 세트가 배열 어딘가에 나타나면 true를..
코딩테스트/Coding Bat
2021. 12. 22.