분류 전체보기

    [python][basic] 내장함수 Built-in function2

    built-in-function¶ len list map max, min oct open ord pow range round sorted str sum tuple type zip isinstance¶ isinstance(object, class) 입력: 첫번째 인수로 인스턴스, 두번째 인수로 클래스 이름 반환: 인스턴스가 그 클래스의 인스턴스인지를 판단하여 참이면 True, 거짓이면 False In [1]: class Person:pass #아무기능없는 person클래스 생성 a=Person() #인스턴스 생성 isinstance(a,Person) Out[1]: True In [2]: b=3 isinstance(b,Person) Out[2]: False len¶ len(s) 입력값의 길이(요소의 전채 개..

    [python][basic] 내장함수 Built-in function 1

    jupyter notebook에 정리한 내용 Built-in function 1¶ 파이썬에서는 자주 사용되는 함수를 내장 함수(Built-in Functions)라는 이름으로 기본적으로 제공 외부 모듈과는 달리 import가 필요하지 않기 때문에 아무런 설정 없이 바로 사용 가능한 함수들 In [3]: from IPython.core.display import display, HTML display(HTML("")) abs¶ 입력 : 숫자 반환값 : 절댓값 In [1]: print(abs(3)) print(abs(-3)) print(abs(-3.14)) 3 3 3.14 all¶ 입력 : 반환 가능한 (iterable) 자료형 x iterable 자료형 : list, tuple, string, dictio..

    [프로그래머스][python] 68644. 두 개 뽑아서 더하기

    programmers.co.kr/learn/courses/30/lessons/68644 코딩테스트 연습 - 두 개 뽑아서 더하기 정수 배열 numbers가 주어집니다. numbers에서 서로 다른 인덱스에 있는 두 개의 수를 뽑아 더해서 만들 수 있는 모든 수를 배열에 오름차순으로 담아 return 하도록 solution 함수를 완성해주세요. 제한 programmers.co.kr 월간코드 챌린지 시즌 1 Question: 정수 배열 numbers가 주어집니다. numbers에서 서로 다른 인덱스에 있는 두 개의 수를 뽑아 더해서 만들 수 있는 모든 수를 배열에 오름차순으로 담아 return 하도록 solution 함수를 완성해주세요. 제한사항 numbers의 길이는 2 이상 100 이하입니다. numbe..

    [git] GIT 버전관리의 본질

    본 포스팅은 생활코딩GITn을 수강하며 정리한 내용입니다. 잘못된 부분이 있으면 댓글로 알려주세요 😊 https://opentutorials.org/course/2708 지옥에서 온 Git (새 수업으로 대체) - 생활코딩 이 수업은 GITn 시리즈로 완전히 대체 되었습니다. GITn은 보다 많은 내용을 작은 단위로 쪼개서 선택적으로 공부하실 수 있도록 제작된 수업입니다. 아래 주소를 통해서 GITn 을 접할 수 있습니다. opentutorials.org Git=Version Contol System 버전관리란? 우리는 report_1.xls->report_2.xls->report_final.xls->report_real_final.xls... 이런 방식으로 과제 제출한 적이 있을 것이다. 이렇게 하는 ..

    [git] SSH 키 생성 및 SSH로 원격저장소(github) 접속

    깃허브에 앞으로 코드를 정리해보려고 다시 로컬과 연결하는 과정에서 SSH key를 생성하여 사용하는 방식이 있어서 이번엔 그 방식을 찾아 설정해보았다. SSH(Secure Shell Protocal) 암호화된 원격 접속(통신) 프로토콜 멀리 떨어져 있는 컴퓨터(SSH server) 내 컴퓨터(SSH client) SSH server와 SSH client는 Shell로 접근과 제어가 가능하다 ->SSH 보안상 안전하다 (client와 server가 암호화되어 있기 때문에 중간에 데이터를 캐치할 수 없다) 접속하고자 하는 컴퓨터(server)에 ssh server가 설치 되어 있어야 접속 가능하다 SSH key SSH 프로토콜을 이용해서 서버에 접속 하고자 할 때 서버에 비밀번호를 입력하는 대신 SSH ke..

    [REF] 코딩 테스트 공부 계획

    다양한 플렛폼의 기본 문제들 풀어보기 하루 5문제씩 꾸준하게! 코드시그널*** 코드업*** 해커랭크 코딜리티 리트코드*** (easy, medium) 프로그래머스 코드포스 백준 codeforces.com/ Codeforces codeforces.com codeup.kr/problemsetsol.php?psid=23 문제집 / 기초 100제 codeup.kr codeup.kr/ CodeUp ☆ 파이썬 다운로드 : 파이썬3 ☆ 무료 C언어 IDE : Code::blocks DEV C++ ☆ 추천 온라인 IDE : C++11 Python3 Java ☆ 채점 가능 언어 : C, C++, JAVA, Python 3.5 ★ C++로 제출시 void main()을 사용하면 컴 codeup.kr programmers...

    [codesignal][python] 6. matirxElementsSum

    codesignal.com Coding Tests and Assessments for Technical Hiring | CodeSignal Learn how you can go beyond resumes in technical hiring with a state-of-the-art assessment platform and advanced coding tests codesignal.com level : easy Question: After becoming famous, the CodeBots decided to move into a new building together. Each of the rooms has a different cost, and some of them are free, but the..

    [codesignal][python] 5. almostIncreasingSequence

    codesignal.com Coding Tests and Assessments for Technical Hiring | CodeSignal Learn how you can go beyond resumes in technical hiring with a state-of-the-art assessment platform and advanced coding tests codesignal.com level : easy Question: Given a sequence of integers as an array, determine whether it is possible to obtain a strictly increasing sequence by removing no more than one element fro..

    [codesignal][python] 4. Make Array Consecutive 2BACK

    codesignal.com Coding Tests and Assessments for Technical Hiring | CodeSignal Learn how you can go beyond resumes in technical hiring with a state-of-the-art assessment platform and advanced coding tests codesignal.com level : easy Question: Ratiorg got statues of different sizes as a present from CodeMaster for his birthday, each statue having an non-negative integer size. Since he likes to mak..

    [codesignal][python] 3. shapeArea

    codesignal.com Coding Tests and Assessments for Technical Hiring | CodeSignal Learn how you can go beyond resumes in technical hiring with a state-of-the-art assessment platform and advanced coding tests codesignal.com level : easy Question: Below we will define an n-interesting polygon. Your task is to find the area of a polygon for a given n. A 1-interesting polygon is just a square with a sid..