본문 바로가기

분류 전체보기445

Flutter ] 현재 위치 기반으로 검색하기 위한 Plugin geolocator | Flutter Package Geolocation plugin for Flutter. This plugin provides a cross-platform (iOS, Android) API for generic location (GPS etc.) functions. pub.dev Use this package as a library 1. Depend on it Add this to your package's pubspec.yaml file: dependencies: geolocator: ^6.0.0+4 2. Install it You can install packages from the command line: with Flutter: $ flutter pub get Alternat.. 2020. 9. 25.
Flutter ] ViewModel 만들 때 유용한 library provider | Flutter Package A wrapper around InheritedWidget to make them easier to use and more reusable. pub.dev Use this package as a library 1. Depend on it Add this to your package's pubspec.yaml file: dependencies: provider: ^4.3.2+2 2. Install it You can install packages from the command line: with Flutter: $ flutter pub get Alternatively, your editor might support flutter pub get. Check t.. 2020. 9. 24.
백준] 11054 : 가장 긴 바이토닉 부분 수열 BOJ에서 다음 문제들을 쭉 순서대로 풀어본다. boj.kr/문제번호 Sk+1 > ... SN-1 > SN을 만족한다면, 그 수열을 바이토닉 수열이라고 한다. 예를 들어, {10, 20, 30, 25, 20}과 {10, 20, 30, 40}, {50, 40, 25, 10} 은 바이토닉 수열이지만, {1, 2, 3, 2, 1, 2, 3, 2, 1}과 {10, 20, 30, 40, 20, 30} 은 바이토닉 수열이 아니다. 수열 A가 주어졌을 때, 그 수열의 부분 수열 중 바이토닉 수열이면서 가장 긴 수열의 길이를 구하는 프로그램을 작성하시오. 입력 : 첫째 줄에 수열 A의 크기 N이 주어지고, 둘째 줄에는 수열 A를 이루고 있는 Ai가 주어진다. (1 ≤ N ≤ 1,000, 1 ≤ Ai ≤ 1,000) 출.. 2020. 9. 24.
Flutter 강의(비공개) ] MVVM Pattern 적용해보기 보호되어 있는 글 입니다. 2020. 9. 24.