본문 바로가기

프로그래밍22

[Python] 개발환경 구축 - Anaconda 와 Tensorflow - Jupyter Notebook 실행시 토큰 or 패스워드 입력하기 이 포스트에서 다루는 부분 Jupyter Notebook 실행 Jupyter Notebook 접속 및 토큰 인증 이 포스트에서 다루는 부분 이 글에서는 localhost:8888을 통해 jupyter notebook을 사용할때, 발생할 수 있는 ' token 인증 ' 에 대해서 다룹니다. Anaconda와 Jupyter notebook의 개발환경 구축방법에 대한 정보는 이곳에서 확인할 수 있습니다. Jupyter notebook 실행 Anacond Powershell Prompt에서 명령어를 입력하여 Jupyter notebook을 실행합니다. jupyter notebook Jupyter notebook 접속 및 토큰 인증 jupyter notebook은 로컬에서 실행되는 것이 아닌, 8888 Port에.. 2020. 5. 8.
[CodeWars] javascript - 6kyu - Number Zoo Patrol 문제풀이 Title Number Zoo Patrol Description Background: You're working in a number zoo, and it seems that one of the numbers has gone missing! Zoo workers have no idea what number is missing, and are too incompetent to figure it out, so they're hiring you to do it for them. In case the zoo loses another number, they want your program to work regardless of how many numbers there are in total. Task: Write.. 2020. 5. 7.
[CodeWars] javascript - 6kyu - Difference of 2 문제풀이 Title Difference of 2 Description The objective is to return all pairs of integers from a given array of integers that have a difference of 2. The result array should be sorted in ascending order of values. Assume there are no duplicate integers in the array. The order of the integers in the input array should not matter. Examples [1, 2, 3, 4] should return [[1, 3], [2, 4]] [4, 1, 2, 3] should a.. 2020. 5. 6.
[CodeWars] javascript - 7kyu - Vowel Count 문제풀이 Title Vowel Count Description Return the number (count) of vowels in the given string. We will consider a, e, i, o, and u as vowels for this Kata. The input string will only consist of lower case letters and/or spaces. How Can I Solved 문제 요구사항 정의 함수의 인자로 문자열이 주어진다. 문자열 중에서 모음의 갯수를 구해서 반환한다. 만약, 문자열에 모음이 없는 경우에는 0을 반환한다. 모음의 종류 a, e, o, u, i 문제 접근 문제를 푸는 방법에는 크게 2가지가 있다. split() 메서드로 문자열을 나누고, in.. 2020. 5. 1.