전체 글 79

[기사] 2022.09.23

구글 딥마인드였나 거기서 친칠라? 새 챗봇 만들었다고 함.. https://www.technologyreview.com/2022/09/22/1059922/deepminds-new-chatbot-uses-google-searches-plus-humans-to-give-better-answers/ DeepMind’s new chatbot uses Google searches plus humans to give better answers The lab trained a chatbot to learn from human feedback and search the internet for information to support its claims. www.technologyreview.com

[TMI] 2022.09.23

왜 팀장(Team長)님만 영어의 합성어일까 tmi 찾기에 나무위키만큼 적절한 곳이 없지.. 보통은 사원-대리-과장-차장-부장 의 수직적인 직제 구조를 타파하고 수평적인 의사소통과 업무를 위하여 만든 팀의 책임자이다. 직급(계급)보다는 직위(위치)에 가깝다. 군대식으로 표현해서 상사가 직급이라면 행정보급관은 직위인 것. 뭐, 그렇다고 한다~

2022.09.22

이거 읽어보기 공부해애애애애캐애애ㅐ애앵 https://www.sqlshack.com/understanding-impact-clr-strict-security-configuration-setting-sql-server-2017/ SQL Server table hints - WITH (NOLOCK) best practices One of the most used table hints in the SELECT T-SQL statements is the WITH (NOLOCK), it's used to override the behavior of the SQL Server query optimizer. www.sqlshack.com 단순 조회 쿼리에 사용~ insert말고~~

220921_[백준]_16967번 : 배열 복원하기_python

https://www.acmicpc.net/problem/16967 16967번: 배열 복원하기 크기가 H × W인 배열 A와 두 정수 X와 Y가 있을 때, 크기가 (H + X) × (W + Y)인 배열 B는 배열 A와 배열 A를 아래로 X칸, 오른쪽으로 Y칸 이동시킨 배열을 겹쳐 만들 수 있다. 수가 겹쳐지면 수가 합쳐 www.acmicpc.net 뇌절하고 0 들어간 부분만 골라서 풀어보려고 했다...테스트 케이스는 돌아감.. 더보기 h,w,x,y = list(map(int,input().split())) b_array = [ 0*(w+y) for _ in range(h+x)] for i in range(h+x): b_array[i] = list(map(int,input().split())) a_arr..

Algorithm/Beakjoon 2022.09.21

[직장] VARCHAR vs. NVARCHAR

중국어 작성시 ? 가 붙는 이슈가 깃랩에 꽤 오랫동안 있었음. 이를 해결하기 위해 일단 VARCHAR와 NVARCHAR를 알아야 함.. https://simplesqltutorials.com/sql-server-difference-between-varchar-and-nvarchar/ What’s the difference between VARCHAR and NVARCHAR? Answered! The difference between VARCHAR and NVARCHAR is that VARCHAR will use 1 byte per character to store a value, while NVARCHAR will use 2 bytes. simplesqltutorials.com 해당 글이 좋아서 가져왔..

220919_[백준]_13335번 : 트럭_python

https://www.acmicpc.net/problem/13335 13335번: 트럭 입력 데이터는 표준입력을 사용한다. 입력은 두 줄로 이루어진다. 입력의 첫 번째 줄에는 세 개의 정수 n (1 ≤ n ≤ 1,000) , w (1 ≤ w ≤ 100) and L (10 ≤ L ≤ 1,000)이 주어지는데, n은 다리를 건너는 트 www.acmicpc.net Queue 이용 # n : 다리를 건너는 트럭의 수, w : 다리의 길이, L : 다리의 최대하중 n, w, l = map(int, input().split()) truck_list = list(map(int, input().split())) queue = [0] * w # 다리 cnt = 0 while queue: cnt += 1 queue.pop..

Algorithm/Beakjoon 2022.09.19

220916_[백준]_1292번 : 쉽게 푸는 문제_python

https://www.acmicpc.net/problem/1292 1292번: 쉽게 푸는 문제 첫째 줄에 구간의 시작과 끝을 나타내는 정수 A, B(1 ≤ A ≤ B ≤ 1,000)가 주어진다. 즉, 수열에서 A번째 숫자부터 B번째 숫자까지 합을 구하면 된다. www.acmicpc.net 범위 구현하다가 어차피 a, b의 범위가 1000이니까... len(arr) = 1036 46으로 그냥 전부 만들어버림 a, b = map(int,input().split()) arr = [0] for i in range(46): for j in range(i): arr.append(i) print(sum(arr[a:b+1]))

Algorithm/Beakjoon 2022.09.16