일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 알고리즘
- 장고 프로젝트
- join()
- passport.js
- Django
- Node.js
- 개발
- ART_Cinema
- 예술영화추천
- 독립영화플랫폼
- til
- Django Blog
- 북마크만들기
- 장고 프로젝트 순서
- 타사인증
- MyPick31
- 자바스크립트
- JavaScript
- MYSQL
- mongodb
- 프로젝트
- Algorithm
- 북마크앱
- Bookmark
- 장고 개발 순서
- Blog
- 장고
- Exercism
- 파이썬 웹프로그래밍 장고
- python
- Today
- Total
목록toLowerCase() (2)
Juni_Dev_log
▶ Anagram 📌Problem Introduction An anagram is a rearrangement of letters to form a new word. : 아나그램은 새로운 단어로부터 철자의 재배열로 이루어진다. Given a word and a list of candidates, select the sublist of anagrams of the given word. : 단어와 후보 목록들이 주어지면, 주어진 단어의 아나그램의 하위 목록을 선택한다. Given "listen" and a list of candidates like "enlists" "google" "inlets" "banana" the program should return a list containing "inlets"...
▶ Pangram (Problem) Introduction Determine if a sentence is a pangram. A pangram (Greek: παν γράμμα, pan gramma, "every letter") is a sentence using every letter of the alphabet at least once. The best known English pangram is: The quick brown fox jumps over the lazy dog. The alphabet used consists of ASCII letters a to z, inclusive, and is case insensitive. Input will not contain non-ASCII symb..