remagine
A binary gap within a positive integer N is any maximal sequence of consecutive zeros that is surrounded by ones at both ends in the binary representation of N.For example, number 9 has binary representation 1001 and contains a binary gap of length 2. The number 529 has binary representation 1000010001 and contains two binary gaps: one of length 4 and one of length 3. The number 20 has binary re..
주어진 문자열(공백 없이 쉼표로 구분되어 있음)을 가지고 아래 문제에 대한 프로그램을 작성하세요.이유덕,이재영,권종표,이재영,박민호,강상희,이재영,김지완,최승혁,이성연,박영서,박민호,전경헌,송정환,김재성,이유덕,전경헌김씨와 이씨는 각각 몇 명 인가요?"이재영"이란 이름이 몇 번 반복되나요?중복을 제거한 이름을 출력하세요.중복을 제거한 이름을 오름차순으로 정렬하여 출력하세요.매우 쉽지만 이런 것도 할줄 알아야 하겠다. 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586..
혼자서 웹 서비스 만들어보기 - 5https://github.com/remagine/webNovel/tree/develop CKEditor 파일 업로드 확장자 제한 1. config.js Ckeditor에는 다양한 설정을 도와주는 config.js 파일이 있습니다. http://docs.ckeditor.com/#!/api/CKEDITOR.config 하지만 아무리 찾아봐도 파일업로드 시 확장자 제한이나, 용량제한은 보이지 않습니다. 결국 클라이언트에서 체크하는 것은 어렵고 서버에서 확장자와 용량을 체크하면 좋을 듯 합니다. 2. FileController - extension 먼저 Ckeditor가 파일을 전송해 주면 해당 파일의 확장자를 확인해주는 것을 구현해볼까 합니다. 업로드를 허용하는 확장자를 정..