분류 전체보기 68

[Leetcode 아주 상세한 문제풀이] 647. Palindromic Substrings – 코드 line 별 설명

Leetcode 문제 이번에 풀어볼 문제는 리트코드 647번 문제 Palindromic substrings 다. 우선 문제를 살펴보자. 리트코드 647번 문제 Palindromic substrings 링크 https://leetcode.com/problems/palindromic-substrings/ Palindromic Substrings - LeetCode Can you solve this real interview question? Palindromic Substrings - Given a string s, return the number of palindromic substrings in it. A string is a palindrome when it reads the same backward ..

Leetcode/String 2024.01.06

[Leetcode 아주 상세한 문제풀이] 424. Longest Repeating Character Replacement - 코드 line 별 설명

Leetcode 문제 이번에 풀어볼 문제는 리트코드 42번 문제 Longest Repeating Character Replacement 다. 우선 문제를 살펴보자. 리트코드 42번 문제 Longest Repeating Character Replacement 링크 https://leetcode.com/problems/longest-repeating-character-replacement/ Longest Repeating Character Replacement - LeetCode Can you solve this real interview question? Longest Repeating Character Replacement - You are given a string s and an integer k. ..

Leetcode/String 2024.01.05

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

Leetcode 문제 이번에 풀어볼 문제는 리트코드 242번 문제 Valid Anagram 다. 우선 문제를 살펴보자. 리트코드 242번 문제 Valid Anagram 링크 https://leetcode.com/problems/valid-anagram/ Valid Anagram - LeetCode Can you solve this real interview question? Valid Anagram - 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 o..

Leetcode/String 2024.01.04

기술적 관점에서 바라보는 애플 (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

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

Leetcode 문제 이번에 풀어볼 문제는 리트코드 20번 문제 Valid Parenthesis 다. 우선 문제를 살펴보자. 리트코드 20번 문제 Valid Parenthesis 링크 Valid Parentheses - LeetCode Valid Parentheses - LeetCode Can you solve this real interview question? Valid Parentheses - Given a string s containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. An input string is valid if: 1. Open brackets must b..

Leetcode/String 2023.12.31

[Leetcode 아주 상세한 문제풀이] 5. Longest Palindromic Substring - 코드 line 별 설명

Leetcode 문제 이번에 풀어볼 문제는 리트코드 5번 문제 Longest Palindromic Substring 다. 우선 문제는 다음과 같다. 리트코드 5번 문제 Longest Palindromic Substring 링크 Palindromic Substrings - LeetCode Palindromic Substrings - LeetCode Can you solve this real interview question? Palindromic Substrings - Given a string s, return the number of palindromic substrings in it. A string is a palindrome when it reads the same backward as forwa..

Leetcode/String 2023.12.30