일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- Python
- 서울에어비앤비
- 6kyu
- 주민번호마스킹
- 8kyu
- java
- https
- 남산타워뷰
- CentOS8
- 오류
- 멀티쓰레드프로그래밍
- 이것이리눅스다
- 사용자변경
- monthPicker
- 서울복층에어비앤비
- 이클립스
- JavaScript
- Eclipse
- 중첩쿼리
- VMware
- SQL
- class파일바로보기
- 7kyu
- 파이썬
- 자바기초스터디
- Linux
- 시즌1
- CentOS
- Codewars
- Oralce
- Today
- Total
목록Codewars/Javascript (4)
보통사람
/** * * 정수 내림차순으로 반환 (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..
/** * * 가장 짧은 단어의 길이 찾기 (Shortest Word) * * 간단한 단어의 문자열이 주어지면 가장 짧은 단어의 길이를 반환합니다. * 문자열은 결코 비어 있지 않으므로 다른 데이터 유형을 고려할 필요가 없습니다. * * Simple, given a string of words, return the length of the shortest word(s). * String will never be empty and you do not need to account for different data types. * * * @auther : pej * @date : 2019. 04. 06. * @param : {String} 여러 단어로 구성된 문자열 * @return : {Number} 문자열..
/** * * 해당 정수가 제곱근인지 확인 (You're a square!) * * 정수가 주어 졌을 때 그 수가 제곱인지 확인하십시오. * 수학에서 정사각형 수 또는 완전한 정사각형은 정수의 제곱 인 정수입니다. * 다시 말해서, 그것은 정수 자체의 결과입니다. * 테스트에서는 항상 정수를 사용하므로 동적 유형 지정 언어에서는 걱정하지 마십시오. * * Given an integral number, determine if it's a square number: * In mathematics, a square number or perfect square is an integer that is the square of an integer; * in other words, it is the product o..