분류 전체보기 (278) 썸네일형 리스트형 어린 동물 찾기 sql로 할때 SELECT animal_id,name FROM animal_ins WHERE intake_condition 'aged' ORDER BY animal_id 혹은 SELECT animal_id,name FROM animal_ins WHERE intake_condition !='aged' ORDER BY animal_id oracle로 할 때 SELECT animal_id,name FROM animal_ins WHERE intake_condition !='Aged' ORDER BY animal_id 비밀지도 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 class Solution { public String[] solution(int n, int[] arr1, int[] arr2) { int arrLength = arr1.length; String[] answer = new String[arrLength]; int[] arrBitSum = new int[arrLength]; for(int i = 0; i0){ String s=""; for(int i =0; i 알아 두면 좋은것1 -연산자 편 int a= 10; int b =~a; //== -11 int c =~a +1 //==10 a++ 과 ++a int a = ++a // a에 대입할때 11 int a =a++ // a에 대입할때 10 char c1 = 'a'; char c2 = 'a'+1; 리터럴 끼리의 연산은 괜찮음 char c3 = c2 +1 은 안된다. 비트 연산자에서 >> 는 부호결정 비트를 제외하고 민다. >>>는 부호결정 비트 포함해서 민다. 여러 기준으로 정렬하기 sql, oracle 일때 SELECT animal_id, name, datetime FROM animal_ins ORDER BY name ASC, datetime DESC 이름 있는 동물 아이디 sql로 할 때 1. SELECT animal_id FROM animal_ins WHERE NOT name IS NULL 2. SELECT animal_id FROM animal_ins WHERE name LIKE '%%' oracle로 할 때 1.SELECT animal_id FROM animal_ins WHERE name IS NOT NULL ORDER BY animal_id 2.SELECT animal_id FROM animal_ins WHERE name LIKE '%%' ORDER BY animal_id 상위 n개 레코드 sql로 할때 SELECT name FROM animal_ins ORDER BY datetime LIMIT 1; oracle로 할때 SELECT name FROM (SELECT name FROM animal_ins ORDER BY animal_ins) WHERE ROWNUM =1; lv1 완주하지 못한 선수 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 import java.util.*; class Solution { public String solution(String[] participant, String[] completion) { String answer = ""; Arrays.sort(participant); Arrays.sort(completion); //이러면 둘다 정렬이 된다. for(int i =0; i 테스트 하기 docs.djangoproject.com/ko/3.1/intro/tutorial05/ 첫 번째 장고 앱 작성하기, part 5 | Django 문서 | Django Django The web framework for perfectionists with deadlines. Overview Download Documentation News Community Code Issues About ♥ Donate docs.djangoproject.com 를 참고하였다. 쉘 환경에서 테스트 실행 python manage.py test polls 뷰 테스트 >>>from django.test.utils import setup_test_environment >>> setup_test_environment() >>> fro.. 이전 1 ··· 26 27 28 29 30 31 32 ··· 35 다음