일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Linux
- VMware
- Python
- 7kyu
- 이것이리눅스다
- class파일바로보기
- Eclipse
- Oralce
- 6kyu
- Codewars
- CentOS8
- 오류
- 서울복층에어비앤비
- CentOS
- 멀티쓰레드프로그래밍
- 이클립스
- 사용자변경
- java
- 주민번호마스킹
- 파이썬
- 시즌1
- 자바기초스터디
- SQL
- 남산타워뷰
- https
- monthPicker
- 서울에어비앤비
- 8kyu
- 중첩쿼리
- JavaScript
- Today
- Total
목록7kyu (10)
보통사람
/** * * 보완 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(..
/** * * 문자 마스킹 처리 (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..
/** * * 입력받은 배열에서 단일한 숫자를 반환 (Find the stray number) * * 하나의 단일 숫자를 제외하고는 모두 동일한 홀수 길이의 정수 배열이 주어집니다. * 그러한 배열을 받아들이는 메소드를 완성 해, 그 단일의 다른 번호를 돌려줍니다. * 입력 배열은 항상 유효합니다! (홀수 길이> = 3) * * You are given an odd-length array of integers, in which all of them are the same, except for one single number. * Complete the method which accepts such an array, and returns that single different number. * The in..
/** * * 정규식 PIN 코드 유효성 검사(Regex validate PIN code) * * ATM 기계는 4 또는 6 자리 PIN 코드를 허용하며 PIN 코드는 정확히 4 자리 또는 정확히 6 자리를 포함 할 수 없습니다. * 함수에 유효한 PIN 문자열이 전달되면 true를 반환하고 그렇지 않으면 false를 반환합니다. * * ATM machines allow 4 or 6 digit PIN codes * and PIN codes cannot contain anything but exactly 4 digits or exactly 6 digits. * If the function is passed a valid PIN string, return true, else return false. * * ..
/** * * 문자열 역순 (Reverse Letter) * * 문자열이 주어지면 알파벳이 아닌 모든 문자는 생략합니다. * 문자열은 소문자 라틴 문자, 숫자 및 기호로 구성됩니다. * * Given a string str, reverse it omitting all non-alphabetic characters. * A string consists of lowercase latin letters, digits and symbols. * * * @param {String} 문자열 * @return {String} 역순 문자열 * @author pej * @date 2019. 04. 07. * @example reverseLetter("ue^jk") ==> "kjeu" */ public static Str..
/** * * 입력받은 문자열 역순으로 출력 (Reverse words) * * 문자열 매개 변수를 허용하는 함수를 완성하고 문자열의 각 단어를 반대로 만듭니다. * 문자열의 모든 공백은 유지되어야합니다. * * Complete the function that accepts a string parameter, and reverses each word in the string. * All spaces in the string should be retained. * * * @param 문자열 * @return 역순 문자열 * @author pej * @date 2019. 03. 24. * @desc 문자열의 각 단어를 반대로 만들고 문자열의 모든 공백은 유지됨 * @example "This is an exa..
/** * * 정수 내림차순으로 반환 (Descending Order) * * 당신의 임무는 음수가 아닌 정수를 인수로 취하고 그 자릿수를 내림차순으로 반환 할 수있는 함수를 만드는 것입니다. * 본질적으로 숫자를 재정렬하여 가능한 가장 높은 숫자를 만듭니다. * * Your task is to make a function that can take any non-negative integer as a argument and return * it with its digits in descending order. * Essentially, rearrange the digits to create the highest possible number. * * * @auther : pej * @date : 2019...
/** * * 문자열 'x'와'o'의 개수가 같은지 비교 (Exes and Ohs) * * 문자열에 'x'와 'o'가 같은지 확인하십시오. * 이 메서드는 부울을 반환하고 대 / 소문자를 구분해야합니다. * 문자열에는 모든 문자가 포함될 수 있습니다. * * Check to see if a string has the same amount of 'x's and 'o's. * The method must return a boolean and be case insensitive. * The string can contain any char. * * * @auther : pej * @date : 2019. 03. 23. * @param : {String} 비교할 문자열 * @return : {Boolean} t..