문제 You are given a string s formed by digits and '#'. We want to map s to English lowercase characters as follows: Characters ('a' to 'i') are represented by ('1' to '9') respectively. Characters ('j' to 'z') are represented by ('10#' to '26#') respectively. Return the string formed after mapping. The test cases are generated so that a unique mapping will always exist. s숫자 및 '#'로 구성된 문자열이 제공 됩니다..
문제 Given a string s, return the string after replacing every uppercase letter with the same lowercase letter. s 문자열이 주어졌을 때, 모든 대문자들을 소문자로 변환하여라. 예시 Example 1: Input: s = "Hello" Output: "hello" Example 2: Input: s = "here" Output: "here" Example 3: Input: s = "LOVELY" Output: "lovely" 제약 조건 Constraints: 1
문제 You are given two strings word1 and word2. Merge the strings by adding letters in alternating order, starting with word1. If a string is longer than the other, append the additional letters onto the end of the merged string. Return the merged string. 예시 Example 1: Input: word1 = "abc", word2 = "pqr" Output: "apbqcr" Explanation: The merged string will be merged as so: word1: a b c word2: p q ..
웹에서 메일을 보내려면, 태그 하이퍼링크에 메일링크(mailto:)를 설정하면 된다. 기본설명 메일링크(mailto:)는 HTML 내에 클릭하면 메일을 보내는 기능을 갖게 하는 방법으로 앵커 태그에 내장해, 메일 소프트를 호출할 수 있도록 해준다. 메일 수신인에 "superman@test.com"을 지정하는 경우, 다음과 같이 작성한다.
태그와 onclick 이벤트 두가지 방법으로 가능하다. 기본적으로 방법은 동일하고, 앞에 링크 방법과 콜론(:)을 붙여주면 된다. 전화 걸기 링크 tel 표시할 문자 혹은 태그 출처: https://studyingazae.tistory.com/202 [똘아재의 노트:티스토리] 아이폰의 경우 a 태그나 onclick 없이도 전화번소 형식의 문자는 자동으로 전화로 링크가 가능하다. 이를 방지하기 위해 메타태그가 걸려있을 수 있다. 아래 태그가 있다면 자동링크는 되지 않는다. 출처: https://studyingazae.tistory.com/202 [똘아재의 노트:티스토리] 참고 사이트 https://studyingazae.tistory.com/202 [HTML] 모바일웹에서 전화걸기, 문자보내기, 메일보내기..
서론 오늘은 제로베이스 프론트엔드 스쿨 1개월차 후기를 적어보려고 한다. 내돈내산 내가 직접 경험하고 느꼈던 것들을 바탕으로 글을 작성한다는 것을 밝힌다! html/css 기초 현재 나는 HTML/CSS 기본강의는 전부 완강을 하였다. 주변 분들을 보면 프론트엔드를 공부할 때 HTML/CSS 를 기본 강의부터 듣는 분들보다 실습 강의부터 듣는 분들이 많았다. 하지만 나는 개인적으로 기본 강의를 듣는 것을 추천한다! 나도 학교를 다닐 때 UIUX 수업을 들은 적이 있어 기본기가 없었던 상황은 아니었다. 하지만 기본을 꽤나 자세하게 알려주셔서 새롭게 알게된 부분도 많았다. 특히 많은 분들이 공감할 내용일텐데 웹 표준성, 웹 호환성을 자세하게 잘 알려주시는 부분이 좋았다. HTML/CSS를 아예 모르는 것이 ..
문제 You are given an m x n integer grid accounts where accounts[i][j] is the amount of money the ith customer has in the jth bank. Return the wealth that the richest customer has. A customer's wealth is the amount of money they have in all their bank accounts. The richest customer is the customer that has the maximum wealth. 고객이 은행 에 가지고 있는 금액은 m x n정수 그리드 accounts가 ..
문제 Given the root of an n-ary tree, return the preorder traversal of its nodes' values. Nary-Tree input serialization is represented in their level order traversal. Each group of children is separated by the null value (See examples) 전위 순회하는 트리의 value 배열을 반환하는 문제이다. 예시 Example 1: Input: root = [1,null,3,2,4,null,5,6] Output: [1,3,5,6,2,4] Example 2: Input: root = [1,null,2,3,4,5,null,null,6,7,nu..
Comment