본문 바로가기

전체 글

(94)
Running Android Emulator hypervisor driver installer [SC] ControlService 실패 1062 AMD CPU에서 Android Studio AVD 사용하기:  문제 해결1. 에러 상황 : 발생한 오류의 번호는 424294967201이며, GitHub에서 제공하는 관련 자료의 링크도 함께 표시되었습니다.GitHub: google/android-emulator-hypervisor-driver-for-amd-processors 이 오류의 전제 조건은 다음과 같습니다 :CPU에 가상화 확장이 있어야 하며, BIOS에서 이 기능이 비활성화되지 않았어야 합니다.Hyper-V가 비활성화되어 있어야 합니다. 자세한 내용은 이 페이지에서 확인할 수 있습니다.2. 해결 방법 :AMD에서는 가상화 기능을 SVM(Secure Virtual Machine)이라고 부르며, 이 기능을 활성화해야 AVD를 정상적으로 사용할 ..
Flutter Windows 설치 및 환경 설정 이 블로그는 제가 Flutter를 설치 및 환결 설정을 하기 위해서 고생 좀 해서 여러분들은 더 신속하고 쉽게 설치하기를 바라는 마음에 씁니다. 유튜버 '코드 팩토리'님의 31분 길이의 영상을 요약한 버전이기도 하며, 후에 올릴 글에는 제가 겪었던 문제를 해결하는 방법도 같이 올리겠습니다. 1. 여러분, Git는 다 있으시죠...?없으시면, 여기서 git 다운로드를 합니다. 저는 Windows 유저여서 Windows 기준으로 설명드릴 거지만, 여러분들의 OS에 맞는 것을 설치하시면 됩니다 :  다운로드하고 나면, 실행시키시고, Next 연타하고 Install 누르면 끝!2. Flutter 설치이제 검색엔진에 flutter 치시고 설치합니다. 저처럼 윈도우 쓰시는 분들은 여기 누르시면 됨.   여기서 원하..
[LeetCode] - 1365. How Many Numbers Are Smaller Than The Current Number LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "How Many Numbers Are Smaller Than The Current Number" 문제입니다.--> https://leetcode.com/problems/how-many-numbers-are-smaller-than-the-current-number/description/  문제 : Given the array nums, for each nums[i] find out how many numbers in the array are s..
[LeetCode] - 896. Monotonic Array LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Monotonic Array" 문제입니다.--> https://leetcode.com/problems/monotonic-array/description/  문제 : An array is monotonic if it is either monotone increasing or monotone decreasing.An array nums is monotone increasing if for all i An array nums is monotone ..
[LeetCode] - 349. Intersection of Two Arrays LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Intersection of Two Arrays" 문제입니다.--> https://leetcode.com/problems/intersection-of-two-arrays/description/  문제 : Given two integer arrays nums1 and nums2, return an array of their intersection .Each element in the result must be unique and you may ..
[LeetCode] - 2706. Buy Two Chocolates LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Buy Two Chocolates" 문제입니다.--> https://leetcode.com/problems/buy-two-chocolates/description/  문제 : You are given an integer array prices representing the prices of various chocolates in a store.You are also given a single integer money, which represe..
[LeetCode] - 961. N-Repeated Element in Size 2N Array LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "N-Repeated Element in Size 2N Array" 문제입니다.--> https://leetcode.com/problems/n-repeated-element-in-size-2n-array/description/  문제 : You are given an integer array nums with the following properties :nums.length == 2 * n.nums contains n + 1 unique el..
[LeetCode] - 867. Transpose Matrix LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Transpose Matrix" 문제입니다.--> https://leetcode.com/problems/transpose-matrix/description/  문제 : Given a 2D integer array matrix, return the transpose of matrix.The transpose of a matrix is the matrix flipped over its main diagonal, switching the matri..