반응형

분류 전체보기 223

[프로그래머스 C#] 서울에서 김서방 찾기

https://programmers.co.kr/learn/courses/30/lessons/12919 코딩테스트 연습 - 서울에서 김서방 찾기 String형 배열 seoul의 element중 "Kim"의 위치 x를 찾아, "김서방은 x에 있다"는 String을 반환하는 함수, solution을 완성하세요. seoul에 "Kim"은 오직 한 번만 나타나며 잘못된 값이 입력되는 경우는 없습니 programmers.co.kr public class Solution { public string solution(string[] seoul) { string answer = ""; for (int i = -1; ++i < seoul.Length;) if(seoul[i] == "Kim") answer = "김서방은 "..

[프로그래머스 C#] 문자열을 정수로 바꾸기

https://programmers.co.kr/learn/courses/30/lessons/12925 코딩테스트 연습 - 문자열을 정수로 바꾸기 문자열 s를 숫자로 변환한 결과를 반환하는 함수, solution을 완성하세요. 제한 조건 s의 길이는 1 이상 5이하입니다. s의 맨앞에는 부호(+, -)가 올 수 있습니다. s는 부호와 숫자로만 이루어져있습니 programmers.co.kr public class Solution { public int solution(string s) { int answer = 0; int.TryParse(s, out answer); return answer; } } TryParse로 간단하게 https://docs.microsoft.com/ko-kr/dotnet/api/s..

[프로그래머스 C#] 수박수박수박수박수박수?

https://programmers.co.kr/learn/courses/30/lessons/12922 코딩테스트 연습 - 수박수박수박수박수박수? 길이가 n이고, "수박수박수박수...."와 같은 패턴을 유지하는 문자열을 리턴하는 함수, solution을 완성하세요. 예를들어 n이 4이면 "수박수박"을 리턴하고 3이라면 "수박수"를 리턴하면 됩니다. 제한 programmers.co.kr using System.Text; public class Solution { public string solution(int n) { StringBuilder answer = new StringBuilder(); for (int i = -1; ++i < n;) answer.Append(i % 2 == 0 ? "수" : "박"..

오늘의 영어

bill - 지폐, 명세서 (음식점에서 계산서라든지, 뭐 Tax price 명세서 라든지) I don't want to be stuck with people in the subway. - 사람들과 함께 지하철에서 갇히고 싶지 않은 느낌으로 비슷한 느낌으로 -> I don't like crowded place. - 나는 사람이 많은 곳을 좋아하지 않는다. You should always have your computers with you.(with you -> 강조) - 너는 항상 너의 컴퓨터를 가지고 있어야 해. * 전공 얘기할 때 My major is A. (공식적, 격식적인) I studed Computer Science in my college. (비공식적인, 비격식적인) -> 친구랑 얘기할 때랑 ..

영어공부 2021.08.28

오늘의 영어

​I can learn by watching. * play, watch 중 어느 게 더 좋냐? -> 둘 다 좋다 하고 play는 재밌고 보는 것은 배울 수 있어서 좋다- 에서 -> 좀 뒤집어서 생각을 좀 해야겠다. We have to take another way. - 우리 이것과는 다른 길로 가야 해! Do you know another way home? - 집에 가는 다른 길 알아? [ way는 이미 있고 지금 way와 다른 way -> another ] * another vs other -> 또 다른 - 다른 table tennis (=ping pong) - 탁구 shortcut - 지름길 Could(polite) you drop me off at the subway station? - 지하철 역 ..

영어공부 2021.08.22

[프로그래머스 C#] 시저 암호

https://programmers.co.kr/learn/courses/30/lessons/12926 코딩테스트 연습 - 시저 암호 어떤 문장의 각 알파벳을 일정한 거리만큼 밀어서 다른 알파벳으로 바꾸는 암호화 방식을 시저 암호라고 합니다. 예를 들어 "AB"는 1만큼 밀면 "BC"가 되고, 3만큼 밀면 "DE"가 됩니다. "z"는 1만큼 밀 programmers.co.kr using System.Text; public class Solution { public string solution(string s, int n) { StringBuilder answer = new StringBuilder(); for (int i = -1; ++i < s.Length;) { int temp = s[i]; if (s..

[프로그래머스 C#] 약수의 합

https://programmers.co.kr/learn/courses/30/lessons/12928 코딩테스트 연습 - 약수의 합 정수 n을 입력받아 n의 약수를 모두 더한 값을 리턴하는 함수, solution을 완성해주세요. 제한 사항 n은 0 이상 3000이하인 정수입니다. 입출력 예 n return 12 28 5 6 입출력 예 설명 입출력 예 #1 12의 약수 programmers.co.kr public class Solution { public int solution(int n) { int answer = 0; for (int i = 0; ++i

[프로그래머스 C#] 이상한 문자 만들기

https://programmers.co.kr/learn/courses/30/lessons/12930 코딩테스트 연습 - 이상한 문자 만들기 문자열 s는 한 개 이상의 단어로 구성되어 있습니다. 각 단어는 하나 이상의 공백문자로 구분되어 있습니다. 각 단어의 짝수번째 알파벳은 대문자로, 홀수번째 알파벳은 소문자로 바꾼 문자열을 programmers.co.kr using System; public class Solution { public string solution(string s) { string answer = ""; int split = 0; for (int i = -1; ++i < s.Length;) { if (s[i] == ' ') { answer += " "; split = 0; continu..

[프로그래머스 C#] 자릿수 더하기

https://programmers.co.kr/learn/courses/30/lessons/12931 코딩테스트 연습 - 자릿수 더하기 자연수 N이 주어지면, N의 각 자릿수의 합을 구해서 return 하는 solution 함수를 만들어 주세요. 예를들어 N = 123이면 1 + 2 + 3 = 6을 return 하면 됩니다. 제한사항 N의 범위 : 100,000,000 이하의 자연수 입출 programmers.co.kr using System; public class Solution { public int solution(int n) { int answer = 0; char[] chr = n.ToString().ToCharArray(); foreach(char item in chr) { int temp ..

반응형