Java - Split Array Largest Sum (Hard, LeetCode)
Given an array nums which consists of non-negative integers and an integer m, you can split the array into m non-empty continuous subarrays. Write an algorithm to minimize the largest sum among these m subarrays. Example 1: Input: nums = [7,2,5,10,8], m = 2 Output: 18 Explanation: There are four ways to split nums into two subarrays. The best way is to split it into [7,2,5] and [10,8], where the..
프로그래밍
2021. 6. 26. 06:17
Android Firebase, Google Analytics 디버그시 수집 중지
개발중 디버그 모드에서는 Firebase Crash, Analytics, Google Analytics 수집을 중지하는 코드이다. if(BuildConfig.DEBUG) { // disable FB FirebaseAnalytics.getInstance(this).setAnalyticsCollectionEnabled(false); FirebaseCrash.setCrashCollectionEnabled(false); // disable GA GoogleAnalytics analytics = GoogleAnalytics.getInstance(this); analytics.setAppOptOut(false); }
모바일 프로그래밍
2017. 12. 13. 23:31
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday