일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Node.js
- passport.js
- 독립영화플랫폼
- 알고리즘
- 타사인증
- 북마크만들기
- 자바스크립트
- til
- ART_Cinema
- Bookmark
- MyPick31
- 장고 프로젝트
- 파이썬 웹프로그래밍 장고
- Exercism
- JavaScript
- 프로젝트
- 북마크앱
- Algorithm
- 개발
- 장고 프로젝트 순서
- Django Blog
- 예술영화추천
- mongodb
- MYSQL
- Blog
- 장고
- Django
- join()
- 장고 개발 순서
- python
- Today
- Total
목록Exercism (13)
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"...
▶ Word Count 📌 Problem Introduction Given a phrase, count the occurrences of each word in that phrase. For the purposes of this exercise you can expect that a word will always be one of: A number composed of one or more ASCII digits (ie "0" or "1234") OR A simple word composed of one or more ASCII letters (ie "a" or "they") OR A contraction of two simple words joined by a single apostrophe (ie "..
▶ Raindrops 📌 Problem Introduction Your task is to convert a number into a string that contains raindrop sounds corresponding to certain potential factors. A factor is a number that evenly divides into another number, leaving no remainder. The simplest way to test if a one number is a factor of another is to use the modulo operation. The rules of raindrops are that if a given number: has 3 as a ..
▶ Hamming 🧬 📌 (Problem) Introduction Calculate the Hamming Distance between two DNA strands. Your body is made up of cells that contain DNA. Those cells regularly wear out and need replacing, which they achieve by dividing into daughter cells. In fact, the average human body experiences about 10 quadrillion cell divisions in a lifetime! When cells divide, their DNA replicates too. Sometimes duri..