2024/01 24

기술적 관점에서 바라보는 애플 (Apple)의 M1 Chip에 대하여

Apple M1 chip에 대하여 애플 M1 칩은 애플이 설계한 최초의 ARM 기반 SoC다. 2020년 11월 17일 공개되었으며, 4세대 맥북 에어, 5세대 맥 미니, 13인치 5세대 맥북 프로, 5세대 아이패드 프로에 탑재되었다. 5나노미터 공정을 사용하여 제조된 최초의 개인용 컴퓨터 칩으로, 160억 개의 트랜지스터를 집적하고 있다. M1 칩은 다음과 같은 주요 기능을 제공한다. - 8코어 CPU: 4개의 고성능 코어와 4개의 저전력 코어로 구성되어 있다. 고성능 코어는 싱글 코어 성능을 향상시키고, 저전력 코어는 전력 효율성을 향상시킨다. - 8코어 GPU: 그래픽 성능을 크게 향상시킨다 - 16코어 뉴럴 엔진: 머신 러닝 성능을 크게 향상시킨다 - 통합 메모리: 고대역폭, 저지연 메모리를 제공..

Product Review 2024.01.03

[Leetcode 아주 상세한 문제풀이] 125. Valid Palindrome - 코드 line 별 설명

Leetcode 문제 이번에 풀어볼 문제는 리트코드 125번 문제 Valid Palindrome 이다. 우선 문제를 살펴보자. 리트코드 125번 문제 Valid Palindrome 링크 https://leetcode.com/problems/valid-palindrome/ Valid Palindrome - LeetCode Can you solve this real interview question? Valid Palindrome - A phrase is a palindrome if, after converting all uppercase letters into lowercase letters and removing all non-alphanumeric characters, it reads the same ..

Leetcode/String 2024.01.03

[Leetcode 아주 상세한 문제풀이] 76. Minimum Window Substring - 코드 line 별 설명

Leetcode 문제 이번에 풀어볼 문제는 리트코드 76번 문제 Minimum window substring 이다. 우선 문제를 살펴보자. 리트코드 76번 문제 Minimum window substring 링크 Minimum Window Substring - LeetCode Minimum Window Substring - LeetCode Can you solve this real interview question? Minimum Window Substring - Given two strings s and t of lengths m and n respectively, return the minimum window substring of s such that every character in t (inclu..

Leetcode/String 2024.01.02

[Leetcode 아주 상세한 문제풀이] 49. Group Anagrams - 코드 line 별 설명

Leetcode 문제 이번에 풀어볼 문제는 리트코드 49번 문제 Group Anagrams 다. 우선 문제를 살펴보자. 리트코드 49번 문제 Group Anagrams 링크 Group Anagrams - LeetCode Group Anagrams - LeetCode Can you solve this real interview question? Group Anagrams - Given an array of strings strs, group the anagrams together. You can return the answer in any order. An Anagram is a word or phrase formed by rearranging the letters of a different word or..

Leetcode/String 2024.01.01