728x90
반응형
- [프로그래머스 코딩테스트] java Lv.0 다음에 올 숫자chantlemanclass Solution { public int solution(int[] common) { int answer = 0; int a = common[0]; int b = common[1]; int c = common[2]; if(b-a == c-b) answer = common[common.length-1] + b-a; //등차 else answer = common[common.length-1]*(b/a); //등비 return answer; } }
- 2024-08-26 09:48:10
- [프로그래머스 코딩테스트] java Lv.0 최빈값 구하기chantlemanimport java.util.*; class Solution { public int solution(int[] array) { int answer = 0; Map map = new HashMap(); for(int num:array) { int cnt=0; if(map.containsKey(num)) cnt=map.get(num); map.put(num,++cnt); } Iterator it = map.keySet().iterator(); int max=-1; ..
- 2024-08-26 09:41:45
- [프로그래머스 코딩테스트] java Lv.0 OX퀴즈chantlemanclass Solution { public String[] solution(String[] quiz) { String[] answer = new String[quiz.length]; for(int i=0;i
- 2024-08-26 09:40:54
- href, replace()를 이용한 페이지 이동chantlemanhref vs replacehref - 페이지가 '이동'되므로 이전 페이지로도 이동 가능 history에 기록(캐시- 빠른 액세스를 위해 값을 임시로 저장하는데 사용)되므로 캐시한 페이지를 보여주거나 서버에 요청replace() - 페이지가 '변경'되기 때문에 이전 페이지로 이동 불가 히스토리에 기록되지 않으며 항상 서버에 페이지를 요청 결제라던지 다시 돌아가면 안되는 사이트에 사용 naver reload & replace document.querySelector('a').addEventListener('click', function (e) { locat..
- 2024-08-22 20:07:58
- [프로그래머스 코딩테스트] java Lv.0 다항식 더하기chantlemanclass Solution { public String solution(String polynomial) { String answer = ""; int x=0; int num=0; String tokens[] = polynomial.split("\\+"); for(String token:tokens) { token = token.trim(); if(token.contains("x")) { token = token.replace("x",""); ..
- 2024-08-22 09:49:53
- [프로그래머스 코딩테스트] java Lv.0 문자열 밀기chantlemanclass Solution { public int solution(String A, String B) { String copy=""; for(int i=0;i
- 2024-08-22 09:31:50
- [프로그래머스 코딩테스트] java Lv.0 특이한 정렬chantlemanimport java.util.*; class Solution { public int[] solution(int[] numlist, int n) { Arrays.sort(numlist); for(int i=0;i
- 2024-08-22 09:20:20
- BOM, DOMchantlemanBOM 브라우저 객체 모델 - 최상위 객체는 window- 전역 객체- 모든 객체가 소속된 객체 window에 속하는 하위 객체location : url에 대한 정보 제공history : 방문 기록 정보 제공document: domnavigator: 브라우저와 운영체제에 대한 정보 제공screen: 사용자 환경의 디스플레이 정보 제공 open() / close(): 새로운 창 열고 닫기(opener() : open()을 통해 새로운 창을 열었을 때 그 자식창에서 부모 창을 가리킬 때 opener라고 함)alert()confirm()prompt()setTimeout(함수, ms): 주어진 시간이 경과하면 지정된 함수 호출clearTimeout(object) : setTimeout() 중지setInterv..
- 2024-08-21 14:52:25
728x90
반응형
스킨 업데이트 안내
현재 이용하고 계신 스킨의 버전보다 더 높은 최신 버전이 감지 되었습니다. 최신버전 스킨 파일을 다운로드 받을 수 있는 페이지로 이동하시겠습니까?
("아니오" 를 선택할 시 30일 동안 최신 버전이 감지되어도 모달 창이 표시되지 않습니다.)