일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- Redis
- kubernetes
- 쿠버네티스
- SpringBoot
- LeetCode
- Machine Learning
- vuejs
- 메세지큐
- vue.js
- POD
- fastapi
- Python
- 솔루션조사
- LLaMa
- 도커
- k8s
- 생성형 AI
- Docker
- 컨설팅
- GPT
- 컨설턴트
- 리트코드
- jpa
- OpenShift
- BFS
- 오픈시프트
- 로깅
- 머신러닝
- 생성형
- fast api
- Today
- Total
목록코딩테스트/Array & String (3)
수 많은 우문은 현답을 만든다
안녕하세요, 오늘은 Leet Code의 27번 문제를 풀어보겠습니다. 문제 링크 문제 내용 Given an integer array nums and an integer val, remove all occurrences of val in nums in-place. The order of the elements may be changed. Then return the number of elements in nums which are not equal to val. Consider the number of elements in nums which are not equal to val be k, to get accepted, you need to do the following things: Change the ..
연속된 알파벳으로 구성된 문자열이 입력될때, 다음으로 오는 문자가 앞의 문자와 같다면 알파벳 하나를 증가시키는 프로그램 Example 1. INPUT : aacc OUTPUT : abcd Example 2. INPUT : aaa OUTPUT : abc Example 3. INPUT : yzz OUTPUT : yza 풀이 def transform_string(input): temp = ''; result = ''; gap = 1; for el in input: # print("el : ", el) # print("result : ", result) # 첫번째 문자 처리 if temp == '': temp = el; result += el; continue; else: # 앞뒤 문자가 같을때 if temp ..
파이썬 기본 메소드들을 알아두자! 특정 문자열이 들어왔을때, 각 단어들을 길이가 짧은 순서대로 우선 출력하는 프로그램을 짜시오. 조건1. 첫글자는 대문자여야한다 조건2. 문장 마지막에는 .가 있어야한다. Example 1. 입력) Hello i am youngho. 출력) I am hello youngho. Example 2. 입력) who are you man 출력) who are you man 풀이 더보기 def rearrange_sentence(inp): sentence = inp[0 : len(inp) -1] words = sentence.split() words = sorted(words, key=lambda x: len(x)) words[0] = words[0].capitalize() sent..