본문 바로가기
반응형

분류 전체보기188

<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.
[Flutter] Change flutter version (downgrade, upgrade) (플러터 버전 바꾸기 (다운그레이드, 업그레이드)) [Flutter] Change flutter version (downgrade, upgrade) 플러터 버전 바꾸기 (다운그레이드, 업그레이드) 플러터를 사용하다가 실수로 업그레이드 하거나 하는 이유로, 잘 빌드되던 기존 코드가 빌드에 실패하는 불상사가 발생하곤 한다. 이 때는 당황하지 말고 플러터 버전을 다운그레이드하면 된다! (For reasons such as accidentally upgrading while using Flutter, Existing code that was built well often fails to build. In this case, don't panic and just downgrade the Flutter version!) 1. 아래 링크를 타고 들어가면, flutte.. 2022. 9. 6.
How to write a project scenario (UML, Usecase) (프로젝트 시나리오 작성 방법) How to write a project scenario (UML, Usecase) 프로젝트 시나리오 작성 방법 (UML, 유스케이스) 유스케이스는 고객의 요구사항을 정리하기 위해 사용된다. (고객(비개발자) -> 업주(개발자)) 실무에서도 고객의 요청사항을 개발자에게 전달하는데 유용하게 사용된다. (Use cases are used to organize customer requirements. (Customer (Non-Developer) -> Owner (Developer)) In practice, it is usefully used to deliver customer requests to developers.) 시나리오? 유스케이스? (scenario? use case?) 시나리오란 사용자가 프로그.. 2022. 9. 4.
반응형