일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 오픈시프트
- jpa
- 리트코드
- 컨설턴트
- GPT
- Machine Learning
- k8s
- BFS
- Python
- LeetCode
- 생성형 AI
- 컨설팅
- OpenShift
- POD
- fast api
- kubernetes
- Redis
- vue.js
- SpringBoot
- 생성형
- 솔루션조사
- 쿠버네티스
- 머신러닝
- LLaMa
- 로깅
- Docker
- 메세지큐
- fastapi
- 도커
- vuejs
- Today
- Total
목록코딩테스트 (23)
수 많은 우문은 현답을 만든다
리팩토링이 좋아서, 코드 퀄리티에 관심을 가지고 보자 애너그램은 단어를 구성하는 똑같은 수의 알파벳들로 다른 단어를 만드는 유희를 말한다. Given two strings s and t, return true if t is an anagram of s, and false otherwise. An Anagram is a word or phrase formed by rearranging the letters of a different word or phrase, typically using all the original letters exactly once. Example 1: Input: s = "anagram", t = "nagaram" Output: true Example 2: Input: s = "r..
연속된 알파벳으로 구성된 문자열이 입력될때, 다음으로 오는 문자가 앞의 문자와 같다면 알파벳 하나를 증가시키는 프로그램 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..