일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 멀티쓰레드프로그래밍
- SQL
- 6kyu
- Python
- 주민번호마스킹
- 8kyu
- JavaScript
- 이것이리눅스다
- java
- https
- monthPicker
- 서울에어비앤비
- CentOS
- class파일바로보기
- 자바기초스터디
- 오류
- 사용자변경
- 서울복층에어비앤비
- 7kyu
- 시즌1
- 남산타워뷰
- Linux
- 이클립스
- Eclipse
- Oralce
- 중첩쿼리
- VMware
- 파이썬
- CentOS8
- Codewars
- Today
- Total
목록Codewars (16)
보통사람
1. 조건 이 챌린지를 위해 간단한 DISTINCT 문을 만들어야하며 모든 고유 한 연령을 찾으려고합니다. people 테이블 id name age 2. 해결 SELECT DISTINCT age FROM people
/** * * 논리자료형변환(Convert boolean values to strings 'Yes' or 'No') * * 부울 값을 가져 와서 "예"문자열을 true로, "아니오"문자열을 false로 리턴하는 메소드를 완료하십시오. * Complete the method that takes a boolean value and return a "Yes" string for true, or a "No" string for false. * * * @author pej * @date 2019. 08. 15. * @param {boolean} true / false * @return {String} Yes / No * @example boolToWord(true) ==> "Yes" * boolToWord(fal..
1. 조건 이 문제를 해결하려면 people 테이블에서 모든 열을 반환하는 간단한 SELECT 문을 만들어야한다. 나이가 50 세 이상인 모든 사람 필드를 반환하고 내림차순으로 정렬해야한다 2. 테이블(people) id name age 3. 쿼리문 SELECT id ,name ,age FROM people WHERE age >= 50 ORDER BY age DESC
/** * * 보완 DNA(Complementary DNA) * * DNA 스트링에서, 기호 "A"및 "T"는 "C"및 "G"와 같이 서로 상보 적이다. * In DNA strings, symbols "A" and "T" are complements of each other, as "C" and "G". * * * @author pej * @date 2019. 08. 10. * @param {String} 문자열 * @return {String} 문자열 * @example DnaStrand.makeComplement("ATTGC") ==> "TAACG" * DnaStrand.makeComplement("GTAT") ==> "CATA" */ public static String makeComplement(..
1. 조건 신청서에는 성인만을위한 섹션이 있다. 18 세 이상인 사용자 테이블에서 사용자의 이름과 연령 목록을 가져와야한다. 2. 테이블(users) name age 3. 쿼리문 SELECT name ,age FROM users WHERE age >= 18
/** * * 입력받은 정수 소수인지 판단 (Is a number prime?) * * 당신의 임무는 지난 4 개의 문자를 제외한 모든 문자를 '#'으로 바꾸는 maskify 함수를 작성하는 것입니다. * * Define a function that takes an integer argument and returns logical value true or false depending on if the integer is a prime. * * * @param 정수 * @return true : 소수 , flase : 소수 아님 * @author pej * @date 2019. 08. 04. */ public static boolean isPrime(int num) { boolean result = fal..
/** * * [6kyu] 카멜 케이스로 표기 (CamelCase Method) * * 간단한 .camelCase 메소드 (PHP의 경우 camel_case 함수, C #의 CamelCase 또는 Java의 camelCase)를 문자열로 작성하십시오. * 모든 단어의 첫 문자는 공백없이 대문자로 시작해야합니다. * * Write simple .camelCase method (camel_case function in PHP, CamelCase in C# or camelCase in Java) * for strings. All words must have their first letter capitalized without spaces. * * * @param {String} 문자열 * @return {St..
/** * * 문자 마스킹 처리 (Credit Card Mask) * * 당신의 임무는 지난 4 개의 문자를 제외한 모든 문자를 '#'으로 바꾸는 maskify 함수를 작성하는 것입니다. * * Your task is to write a function maskify, which changes all but the last four characters into '#'. * * * @param 문자열 * @return 마스킹된 문자열 * @author pej * @date 2019. 03. 17. */ public static String maskify(String str) { StringBuilder builder = new StringBuilder(str); if (str.isEmpty() || str..