메모
-
리눅스 바이블: Chapter3. Using The Shell 정리리눅스 2021. 2. 11. 15:16
1. About Shells and Terminal Window 쉘은 명령어 해석기를 의미하며 bash shell, C shell, Korn shell등이 있다. 쉘 interface를 나타내기 위해 shell prompt, terminal window, virutal console의 방법들을 사용한다. (1) Using the shell prompt Graphical user interface를 사용하지 않는다면 로그인 했을 때 shell prompt를 사용하게 된다. $: 일반 사용자의 기본 프롬프트 #: root 사용자의 기본 프롬프트 (2) Using the Terminal Window Desktop GUI 버전의 리눅스를 사용한다면, 터미널 창을 이용해서 쉘을 사용하게 된다. (3) Using ..
-
메모: 파이썬 알고리즘 1차 강의 메모메모 및 기타 2020. 8. 20. 21:09
1. 문자열 역으로 출력하기 s = input() print(s[::-1]) 2. 시간복잡도 O(root(n)) 으로 소수판별하기 import math x = int(input()) answer = False if x % 2 == 0 and x != 2: answer = False else: for i in range(2, int(math.sqrt(x)) + 2): if x % i == 0: answer = False break else: answer = True print(answer) 3. 최대값구하기 3 4 1 7 9 2 2 7 9 6 1 9 5 7 3 9 # -*- coding: utf-8 -*- # UTF-8 encoding when using korean n = int(input()) numb..