일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 타사인증
- mongodb
- 장고 프로젝트 순서
- 개발
- 파이썬 웹프로그래밍 장고
- join()
- python
- til
- 예술영화추천
- 독립영화플랫폼
- Algorithm
- 장고 개발 순서
- 장고 프로젝트
- 프로젝트
- 북마크앱
- passport.js
- ART_Cinema
- Django Blog
- Blog
- JavaScript
- Django
- 알고리즘
- MYSQL
- Exercism
- 자바스크립트
- MyPick31
- Node.js
- 북마크만들기
- Bookmark
- 장고
- Today
- Total
목록분류 전체보기 (141)
Juni_Dev_log
▶ Matrix (Problem) Introduction Given a string representing a matrix of numbers, return the rows and columns of that matrix. So given a string with embedded newlines like: 9 8 7 5 3 2 6 6 7 representing this matrix: 1 2 3 |--------- 1 | 9 8 7 2 | 5 3 2 3 | 6 6 7 your code should be able to spit out: A list of the rows, reading each row left-to-right while moving top-to-bottom across the rows, A ..
app2.js 파일을 노드로 실행하면 웹 서버가 실행된다. 이제 사용자는 필요한 정보를 요청해서 받아볼 수 있다. 사용자가 웹 브라우저를 열고 웹 서버로 데이터 조회를 욫어하고 싶다면 login.html 같은 웹 문서를 띄워보자. 이와 같이 사용자는 웹 문서를 주로 보게 되므로, 웹 문서가 이쁘게 보이는 것이 중요하다. 최대한 간단한 방법으로 꾸며보도록 한다. Semantic UI 라이브러리로 웹 문서 꾸미기 원래는 CSS와 자바스크립트를 사용해야하지만, 코드의 양을 줄이고 싶다면, UI 라이브러리를 사용하면 된다. 다양한 UI 라이브러리 중에서 Semantic UI 라이브러리는 태그만으로도 버튼이나 입력 상자와 같은 웬만한 UI 구성요소를 만들 수 있다. semantic-ui.com/ Semantic ..
▶ Bank Account (Problem) Introduction Simulate a bank account supporting opening/closing, withdrawals, and deposits of money. Watch out for concurrent transactions! A bank account can be accessed in multiple ways. Clients can make deposits and withdrawals using the internet, mobile phones, etc. Shops can charge against the account. Create an account that can be accessed from multiple threads/pro..
▶ 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..