반응형

분류 전체보기 223

[프로그래머스 C#] 자연수 뒤집어 배열로 만들기

https://programmers.co.kr/learn/courses/30/lessons/12932 코딩테스트 연습 - 자연수 뒤집어 배열로 만들기 자연수 n을 뒤집어 각 자리 숫자를 원소로 가지는 배열 형태로 리턴해주세요. 예를들어 n이 12345이면 [5,4,3,2,1]을 리턴합니다. 제한 조건 n은 10,000,000,000이하인 자연수입니다. 입출력 예 n return 12345 programmers.co.kr using System; public class Solution { public int[] solution(long n) { char[] chr = n.ToString().ToCharArray(); int[] answer = new int[chr.Length]; Array.Reverse(..

[프로그래머스 C#] 정수 내림차순으로 배치하기

using System; public class Solution { public long solution(long n) { long answer = 0; char[] _charTemp = n.ToString().ToCharArray(); System.Array.Sort(_charTemp); System.Array.Reverse(_charTemp); string _strTemp = new string(_charTemp); answer = Convert.ToInt64(_strTemp); return answer; } } string으로 바꾸고 정렬하기 쉽게 Array로 바꾸고 정렬하고 다시 long으로 바꾸기 위해 역순으로 string으로 바꾸고 long으로 바꾸고

오늘의 영어

It's hectic. - 바쁘다. (바빠서 정신이 없는 느낌) wake up - 잠에서 깨버린 거 get up - 일어난 거임 (딱 눈뜨고 일어난 건데 딱 잠에서 깬 그 느낌) I was half-awake. - 반쯤 일어나 버린 거 (제대로 못 일어난 비몽사몽..) I fell asleep on and off. - 잠에서 자다 깨다 하는 느낌 (아침에 일어났을 때 자다 깨다 하는 느낌) half-asleep (asleep은 문법적인건데 아직은 넘어가는..!) * 타동사 I like coffee. ~을 좋아한다 (타동사) 타동사 + 목적어 자동사 (목적어 필요 X) ​my friend's pension. - 내 친구의 별장 It is somewhere in 강원도. - 강원도 어딘가에 있어. *** 과..

영어공부 2021.08.07

C# List 대입 시 유의!

https://docs.microsoft.com/ko-kr/dotnet/api/system.linq.enumerable.tolist?view=net-5.0 Enumerable.ToList(IEnumerable) 메서드 (System.Linq) IEnumerable에서 List을 만듭니다.Creates a List from an IEnumerable. docs.microsoft.com using System.Linq; -> .ToList() 사용 Unity 작업 중 순간 삽질.. List list_0 = new List() { 1, 2, 3 }; List list_1 = new List() { 1, 2, 3, 4, 5 }; 대 충 요렇게 2개의 List가 있다 가정할 때 Debug.Log(list_0.Co..

Programming Tips 2021.08.05

[프로그래머스 C#] 정수 제곱근 판별

https://programmers.co.kr/learn/courses/30/lessons/12934 코딩테스트 연습 - 정수 제곱근 판별 임의의 양의 정수 n에 대해, n이 어떤 양의 정수 x의 제곱인지 아닌지 판단하려 합니다. n이 양의 정수 x의 제곱이라면 x+1의 제곱을 리턴하고, n이 양의 정수 x의 제곱이 아니라면 -1을 리턴하는 함 programmers.co.kr using System; public class Solution { public long solution(long n) { long temp = (long)Math.Sqrt(n); if (temp * temp == n) return (temp + 1) * (temp + 1); else return -1; } } :')

[프로그래머스 C#] 제일 작은 수 제거하기

https://programmers.co.kr/learn/courses/30/lessons/12935# 코딩테스트 연습 - 제일 작은 수 제거하기 정수를 저장한 배열, arr 에서 가장 작은 수를 제거한 배열을 리턴하는 함수, solution을 완성해주세요. 단, 리턴하려는 배열이 빈 배열인 경우엔 배열에 -1을 채워 리턴하세요. 예를들어 arr이 [4,3,2,1 programmers.co.kr using System.Linq; public class Solution { public int[] solution(int[] arr) { int size = (arr.Length) > 0 ? arr.Length - 1 : 1; int[] answer = new int[size]; if (size == 1) { ..

Unity 간단한 노치 대응-

Device simulator Import - Preview Package를 Import 하려면 Package Manager오른쪽 상단에 설정을 들어가서 Enable Preview Packages 체크 + https://assetstore.unity.com/packages/tools/gui/safe-area-helper-130488 Safe Area Helper | GUI 도구 | Unity Asset Store Use the Safe Area Helper from Crystal Pug on your next project. Find this GUI tool & more on the Unity Asset Store. assetstore.unity.com Safe Area Asset 다운 먼저 위처럼 Ga..

Unity/Tips 2021.07.19
반응형