분류 전체보기 (174) 썸네일형 리스트형 [위험관리] 위험, 위험의 구성요소, 위험관리 방법론 KISA에서 배포한 정보보호관리체계 위험관리 가이드 (2004)https://www.kisa.or.kr/204/form?postSeq=010304&lang_type=KO KISA 한국인터넷진흥원제1장 개요 제1절 목적 제2절 적용 대상 제3절 정보보호관리체계 수립 가이드 구성 제4절 이 가이드의 구성 제2장 위험관리 과정 개요 제1절 위험관리의 정의 제2절 위험관리의 필요성 제3장 위험www.kisa.or.kr 굉장히 오래된 자료지만 위험관리 방법은 변함이 없다는 얘기를 들어 정리해본다.(위험관리가 무엇인지 어렴풋이는 알지만 아직 명확히 설명은 못하겠는데.. 이거라도 보고나면 좀 나아질까 싶어서)1. 위험 (Risk)원하지 않는 사건이 발생하여 손실 또는 부정적인 영향을 미칠 가능성2. 위험의 구성요소1.. 광교 아울렛 롯데시네마 시야 / 6관 G열 6관 G열 11번 [Leetcode] 2000. Reverse Prefix of Word https://leetcode.com/problems/reverse-prefix-of-wordclass Solution: def reversePrefix(self, word: str, ch: str) -> str: index = word.find(ch) if index == -1: return word return word[index::-1] + word[index+1:] 광역버스 M5342 시간표 (2024.5.1) [Leetcode] 404. Sum of Left Leaves https://leetcode.com/problems/sum-of-left-leaves # Definition for a binary tree node. # class TreeNode: # def __init__(self, val=0, left=None, right=None): # self.val = val # self.left = left # self.right = right class Solution: def sumOfLeftLeaves(self, root: Optional[TreeNode]) -> int: result = 0 if not root: return result if root.left: if not root.left.left and not root.left.right: result += .. [Leetcode] 3114. Latest Time You Can Obtain After Replacing Characters https://leetcode.com/problems/latest-time-you-can-obtain-after-replacing-characters class Solution: def findLatestTime(self, s: str) -> str: result = '' for i, c in enumerate(s): if c == '?' and i == 0: if s[1] [Leetcode] 3110. Score of a String https://leetcode.com/problems/score-of-a-string class Solution: def scoreOfString(self, s: str) -> int: sum = 0 for i in range(len(s)-1): sum += abs(ord(s[i]) - ord(s[i+1])) return sum 광교 아울렛 롯데시네마 시야 / 3관 G열 광교 롯데시네마 3관 G열 7번 시야 이전 1 2 3 4 5 6 7 ··· 22 다음