분류 전체보기 (174) 썸네일형 리스트형 AWS, GCP Compliance 페이지 - AWS: https://aws.amazon.com/compliance/programs/ 규정 준수 프로그램 – Amazon Web Services(AWS) 글로벌 Cloud Security Alliance(CSA) 제어 서드 파티 위험 관리 서드 파티 위험 관리 클라우드 특정 제어 프라이버시 정보 관리 보안, 가용성 및 기밀성 보고서 아메리카 캐나다 사이버 보안 센터(CCCS) aws.amazon.com - GCP: https://cloud.google.com/compliance?hl=en https://cloud.google.com/compliance?hl=en cloud.google.com - Azure: https://learn.microsoft.com/en-us/azure/compliance/.. [Leetcode] 2671. Frequency Tracker class FrequencyTracker: def __init__(self): self.data = {} self.freq = {} def add(self, number: int) -> None: if self.data.get(number, 0) != 0: self.freq[self.data[number]] = self.freq.get(self.data[number], 1) - 1 self.data[number] = self.data.get(number, 0) + 1 self.freq[self.data[number]] = self.freq.get(self.data[number], 0) + 1 def deleteOne(self, number: int) -> None: if self.data.get(numb.. [Leetcode] 2236. Root Equals Sum of Children # 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 checkTree(self, root: Optional[TreeNode]) -> bool: return root.val == (root.left.val + root.right.val) https://leetcode.com/problems/root-equals-sum-of-children/ LeetCode - The World's Leading Online Programming Le.. [Leetcode] 1002. Find Common Characters https://leetcode.com/problems/find-common-characters/ LeetCode - The World's Leading Online Programming Learning Platform Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com class Solution: def commonChars(self, words: List[str]) -> List[str]: result = [] result_dic = {} for c in words[0]: if r.. [Leetcode] 2703. Return Length of Arguments Passed /** * @param {...(null|boolean|number|string|Array|Object)} args * @return {number} */ var argumentsLength = function(...args) { return args.length }; /** * argumentsLength(1, 2, 3); // 3 */ https://leetcode.com/problems/return-length-of-arguments-passed/ LeetCode - The World's Leading Online Programming Learning Platform Level up your coding skills and quickly land a job. This is the best place.. [Leetcode] 9. Palindrome Number https://leetcode.com/problems/palindrome-number/ LeetCode - The World's Leading Online Programming Learning Platform Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com class Solution: def isPalindrome(self, x: int) -> bool: str_x = str(x) max_index = len(str_x) for i in range(0, max_index): if.. 제주 우진해장국 금요일 저녁 대기시간 2023년 11월 10일 금요일 저녁 20시 30분에 웨이팅 걸고 20분만에 입장했다! 아침~점심에 웨이팅이 길다는 얘기에, 저녁비행기로 제주 도착하자마자 우진해장국부터 갔는데 저녁에도 웨이팅이 있다니.. 그래도 자리가 많고 회전도 빠르고 대기할 공간이 따로 있어서 기다릴만했다! 맛은 맛있긴 하지만..대기가 있다면 기다려서 먹지는 않을듯! 동수원 - 김포공항 4300번 공항버스 소요시간 (2023.11) 갤러리 정리하다가 남아있어서 기록해두는 정보! 2023년 11월 10일 금요일이었고, 우만동 동수원(구 호텔캐슬)터미널에서 15:40 출발 ⬇️ 김포공항 국내선에 17:50 도착 (2시간 10분 소요) 금요일 이른 퇴근길에 걸려서 더 막혔던거 같다ㅠㅠ 여유있게 가려고 버스를 한타임 당겼는데, 원래 타려던거 탔으면 비행기 놓쳤을뻔.. 이전 1 ··· 11 12 13 14 15 16 17 ··· 22 다음