분류 전체보기 96

[코테스터디] 2. 배열 (2)

4. 모의고사 수포자는 수학을 포기한 사람을 줄인 표현입니다. 수포자 삼인방은 모의고사에 수학 문제를 전부 찍으려 합니다. 수포자는 1번 문제부터 마지막 문제까지 다음과 같이 찍습니다.1번 수포자가 찍는 방식 : 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, ...2번 수포자가 찍는 방식 : 2, 1, 2, 3, 2, 4, 2, 5, 2, 1, 2, 3, 2, 4, 2, 5, ...3번 수포자가 찍는 방식 : 3, 3, 1, 1, 2, 2, 4, 4, 5, 5, 3, 3, 1, 1, 2, 2, 4, 4, 5, 5, ...1번 문제부터 마지막 문제까지의 정답이 순서대로 저장된 배열 answers가 주어졌을 때 가장 많은 문제를 맞힌 사람이 누구인지 배열에 담아 반환하도록 solution()함수를 작..

카테고리 없음 2024.07.22

[코테스터디] 1. 배열 (1)

*문제 : 프로그래머스 100문제 코딩테스트 합격자 되기 책 발췌 1. 배열 정렬하기  정수 배열을 정렬해서 반환하는 solution()함수를 완성하세요.def solution(arrary) : array.sort() return array 2. 배열 제어하기  정수 배열을 하나 받습니다. 배열의 중복값을 제거하고 배열 데이터를 내림차순으로 정렬해서 반환하는 solution()함수를 구현하세요# 1def solution(array) : arr = list(set(array)) arr.sort() return arr[::-1] # 2def solution(array) : return sorted(set(array), reverse=True) 3. 두개 뽑아서 더하..

카테고리 없음 2024.07.19

인간의 작업물처럼 보이도록 하는 Humanizer 서비스의 등장

인간처럼 보이게 일부러 틀려라…상상도 못한 일 벌어졌다 | 한국경제 - https://www.hankyung.com/article/202407077050i "인간처럼 보이게 일부러 틀려라"…상상도 못한 일 벌어졌다"인간처럼 보이게 일부러 틀려라"…상상도 못한 일 벌어졌다, "인공지능 기술 사용한 흔적 지워드려요" 'AI 탐지' 무력화 기술 등장 빅테크도 진짜·가짜 구별 못해www.hankyung.com

Issues 2024.07.09

[코테] 99클럽 코테 스터디 40일차 TIL - 그리디

Question1 - [미들러] 문자열의 최적 구분 (Optimal Partition of String) Given a string s, partition the string into one or more substrings such that the characters in each substring are unique. That is, no letter appears in a single substring more than once.Return the minimum number of substrings in such a partition.Note that each character should belong to exactly one substring in a partition. Example 1:Inp..

Dev 2024.06.29

[코테] 99클럽 코테 스터디 39일차 TIL - 힙

Question1 - [미들러] 열 크기를 반으로 줄이기 (Reduce Array Size to The Half) You are given an integer array arr. You can choose a set of integers and remove all the occurrences of these integers in the array.Return the minimum size of the set so that at least half of the integers of the array are removed. Example 1:Input: arr = [3,3,3,3,5,5,5,2,2,7]Output: 2Explanation: Choosing {3,7} will make the new array..

Dev 2024.06.28

[코테] 99클럽 코테 스터디 37일차 TIL - 스택/큐

Question1 - [미들러] 최소 추가로 유효한 괄호 만들기 (Minimum Add to Make Parentheses Valid) 문제 설명 https://leetcode.com/problems/minimum-add-to-make-parentheses-valid/description/ A parentheses string is valid if and only if:It is the empty string,It can be written as AB (A concatenated with B), where A and B are valid strings, orIt can be written as (A), where A is a valid string.You are given a parentheses str..

Dev 2024.06.26

[코테] 99클럽 코테 스터디 32일차 TIL - 정렬

Question1 - [미들러] Top K 최빈값 찾기 (Top K Frequent Elements) 문제 설명 https://leetcode.com/problems/top-k-frequent-elements/description/ Given an integer array nums and an integer k, return the k most frequent elements. You may return the answer in any order. Example 1:Input: nums = [1,1,1,2,2,3], k = 2Output: [1,2]Example 2:Input: nums = [1], k = 1Output: [1] Constraints:1 -104 k is in the range [1, t..

Dev 2024.06.20