본문 바로가기
반응형

Solution45

<Solution> 17.Letter Combinations of a Phone Number 17.Letter Combinations of a Phone Number Given a string containing digits from 2-9 inclusive, return all possible letter combinations that the number could represent. Return the answer in any order. A mapping of digits to letters (just like on the telephone buttons) is given below. Note that 1 does not map to any letters. Example 1: Input: digits = "23" Output: ["ad","ae","af","bd","be","bf","cd.. 2022. 9. 17.
[Solved] How to add configuration of flutter in Android Studio (안드로이드스튜디오에서 flutter의 configuration add하는 방법) How to add configuration of flutter in Android Studio 안드로이드스튜디오에서 flutter의 configuration add하는 방법 1. Android Studio에서 Preferences... 진입 (1. Enter Preferences... in Android Studio) 2. Plugins 탭에서 Flutter 다운로드 (2. Download Flutter from the Plugins tab) 2022. 9. 12.
[Solved][firebase] error FirebaseError: Firebase Storage: User does not have permission to access '*******'. (storage/unauthorized) 해결방법 [Solved][firebase] 해결방법 error FirebaseError: Firebase Storage: User does not have permission to access '*******'. (storage/unauthorized) Firebase storage의 내용을 read할때 발생하는 오류이다. 이 오류는 권한이 없는 유저가 storage의 내용을 읽고자 할 때 발생하므로 아래와 같이 Storage - Rules의 내용을 수정하자. [English](This error occurs when reading the contents of Firebase storage. This error occurs when an unauthorized user tries to read the conten.. 2022. 9. 3.
[Git] push/pull automatic login (push/pull 자동 로그인) [Git] push/pull automatic login (push/pull 자동 로그인) - 계정 설정 (Account Settings) name 설정 git config --global user.name "{name}" 프로젝트 마다 다른 name 사용하려면 --global 옵션 제거 email 설정 git config --global user.email {email} 프로젝트 마다 다른 email 사용하려면 --global 옵션 제거 설정 확인 git config --list - Git 계정 정보 저장 (Storing Git Account Information) Credential 정보 저장1 git config credential.helper store 현재 레포지터리에 대해서만 영구 적용 Cre.. 2022. 9. 3.
반응형