๋ชฉ๋ก์ ์ฒด ๊ธ (113)
๐ฑ dreaming DiNO

class Solution { fun solution(n: Int): Int { var answer: Int = 0 var mok = 0 if (n%2 == 0) { mok = n/2 } else { mok = (n-1)/2 } for (i in 1 .. mok) { answer += 2 * i } return answer } } 1) ๋๋จธ์ง ์ฐ์ฐ์ % ๋ฅผ ์ด์ฉํด์ ํ์, ์ง์ ๋ถ๊ธฐ ํ์๊ณ 2) for๋ฌธ ์ด์ฉํ์ฌ ๋ชซ๊น์ง ๋ํด์ฃผ๋๋ก ํ์๋ค
์ ์ num1, num2๊ฐ ๋งค๊ฐ๋ณ์๋ก ์ฃผ์ด์ง ๋, num1์ num2๋ก ๋๋ ๊ฐ์ 1,000์ ๊ณฑํ ํ ์ ์ ๋ถ๋ถ์ return ํ๋๋ก solution ํจ์๋ฅผ ์์ฑํด์ฃผ์ธ์. โ ์ ์ถ๋ ฅ ์ num1 num2 result 3 2 1500 7 3 2333 1 16 62 class Solution { fun solution(num1: Int, num2: Int): Int { var answer: Int = 0 // double ํ๋ณํ var newNum1 = num1.toDouble() var newNum2 = num2.toDouble() var after = newNum1 / newNum2 * 1000 /* var after = num1.toDouble() / num2.toDouble() * 1000 */ a..

๊ธฐ์ธ๊ธฐ = (y์ถ ์ฆ๊ฐ๋) / (x์ถ ์ฆ๊ฐ๋) class Solution { fun solution(dots: Array): Int { var answer: Int = 0 var x1 = dots[0][0] var x2 = dots[1][0] var x3 = dots[2][0] var x4 = dots[3][0] var y1 = dots[0][1] var y2 = dots[1][1] var y3 = dots[2][1] var y4 = dots[3][1] var hor1 = (y2-y1) / (x2-x1) var hor2 = (y1-y4) / (x3-x4) var ver1 = (y1-y2) / (x3-x2) var ver2 = (y4-y1) / (x4-x1) if ( (hor1 == hor2) || (ve..
// ํ์ผ ๋ค์ด๋ก๋ private var mDownloadManager: DownloadManager? = null private var mDownloadQueueId: Long? = null private val downloadCompleteReceiver: BroadcastReceiver = object : BroadcastReceiver() { override fun onReceive(context: Context?, intent: Intent) { val reference = intent.getLongExtra(DownloadManager.EXTRA_DOWNLOAD_ID, -1) if (mDownloadQueueId == reference) { val query = Query() // ๋ค์ด๋ก๋ ํญ..
https://sjhp.tistory.com/3

1. scrcpy ์ค์น brew install scrcpy brew install android-platform-tools 2. adb ๋๋ฐ์ด์ค ์ฐ๊ฒฐ 3. ์คํ scrcpy ์ฌ๋ฌ device scrcpy ๋์ฐ๊ณ ์ถ์๋ 1. 2๊ฐ ๋์ฐ๊ณ ์ถ์ผ๋ฉด ํฐ๋ฏธ๋ 2๊ฐ๋ฅผ ๋์์ ๊ฐ๊ฐ ๋ช ๋ น์ด ์คํ scrcpy --serial [๋๋ฐ์ด์ค serialNo OR wifi IP] 2. adb device ์์ ๋์จ ์ ๋ณด๊ฐ serial No. ์ถ์ฒ: https://www.downloadsource.net/how-to-use-multiple-phones-with-scrcpy-setup-two-phones-with-scrcpy/n/21115/

1. Project ์ค์ , google-services.json ํ์ผ ๋ฃ๊ธฐ, gradle ์ค์ 2. Tool - Firebase - Authentication (๋น ์ง gradle ์์ ์ ์์ผ๋ฏ๋ก ์ฌ๊ธฐ์๋ SDK ์ฐ๊ฒฐํด์ ๋ฃ์ด์ฃผ๊ธฐ) 3. RegisterFragment.kt private lateinit var auth: FirebaseAuth override fun onCreateView( inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle? ): View { binding = DataBindingUtil.inflate(inflater, R.layout.fragment_register, container, false) w..
1. color -> bottom_navigation_item_selector.xml ๋ง๋ค๊ธฐ 2. itemTextColor, itemIconTint ์ ์ฉ

suspend ํจ์ ์์ฐจ์ ์คํ SecondFragment.kt binding.checkBtn.setOnClickListener { secondViewModel.exampleSuspend() } SecondViewModel.kt fun exampleSuspend() { viewModelScope.launch(Dispatchers.IO) { val time = measureTimeMillis { // ์์์๊ฐ // ๋น๋๊ธฐ ์คํ๊ณผ ์ฝ๋ฐฑ์ ์์ฐจ์ ์ผ๋ก ๋ง๋ค์ด ์ค๋ค! val one = doSomethingUsefulOne() val two = doSomethingUsefulTwo() println("The answer is ${one + two}") } println("Completed in $time ms") ..
Basic SecondFragment.kt binding.checkBtn.setOnClickListener { secondViewModel.exampleSuspend() } SecondViewModel.kt fun exampleSuspend() = runBlocking { launch { repeat(5) { i -> println("Coroutine A, $i") } } launch { repeat(5) { i -> println("Coroutine B, $i") } } println("Coroutine Outer") } I: Coroutine Outer I: Coroutine A, 0 I: Coroutine A, 1 I: Coroutine A, 2 I: Coroutine A, 3 I: Coroutin..