-
728x90
π λ¬Έμ μ€λͺ
μ μκ° λ΄κΈ΄ 리μ€νΈ
num_list
κ° μ£Όμ΄μ§λλ€.num_list
μ νμλ§ μμλλ‘ μ΄μ΄ λΆμΈ μμ μ§μλ§ μμλλ‘ μ΄μ΄ λΆμΈ μμ ν©μ returnνλλ‘ solution ν¨μλ₯Ό μμ±ν΄μ£ΌμΈμ.π μ ν μ¬ν
- 2 ≤
num_list
μ κΈΈμ΄ ≤ 10 - 1 ≤
num_list
μ μμ ≤ 9 num_list
μλ μ μ΄λ ν κ°μ©μ μ§μμ νμκ° μμ΅λλ€.
π λ΅μ
class Solution { public int solution(int[] num_list) { int answer = 0; String even = ""; String odd = ""; for(int i=0; i<num_list.length; i ++) { if(num_list[i]%2==0) { even += String.valueOf(num_list[i]); } else { odd += String.valueOf(num_list[i]); } } return Integer.valueOf(even) + Integer.valueOf(odd); } }
num_list
μ λͺ¨λ μμλ₯Ό λλ©΄μ μμκ° μ§μμΌ λeven
λ³μμ μμλ₯Ό λ¬Έμμ΄λ‘ νλ³ννμ¬ λΆμ¬μ£Όκ³ , νμμΌ λodd
μ μμλ₯Ό λ¬Έμμ΄λ‘ νλ³ννμ¬ λΆμ¬μ€λ€. κ·Έλ¦¬κ³ λ λ¬Έμμ΄μInteger.parseInt()
ν¨μλ₯Ό ν΅ν΄ μ«μ νμ μΌλ‘ νλ³ννμ¬ λν κ°μ 리ν΄νλ€.π‘ μ°Έκ³
String.valueOf(μ«μνμ λ³μ)
: μ«μ λ³μλ₯Ό λ¬Έμνμ μΌλ‘ νλ³νInteger.valueOf(λ¬Έμμ΄νμ λ³μ)
: λ¬Έμμ΄ λ³μλ₯Ό μ«μνμ μΌλ‘ νλ³ν
728x90'algorithm' μΉ΄ν κ³ λ¦¬μ λ€λ₯Έ κΈ
π» μλ° μκ³ λ¦¬μ¦ - λ§μ§λ§ λ μμ (0) 2023.09.21 π» μλ° μκ³ λ¦¬μ¦ - μ£Όμ¬μ κ²μ2 (0) 2023.09.21 π» μλ° μκ³ λ¦¬μ¦ - μμλ€μ κ³±κ³Ό ν© (0) 2023.09.18 π» μλ° μκ³ λ¦¬μ¦ - μ½λ μ²λ¦¬νκΈ° (0) 2023.09.18 π» μλ° μκ³ λ¦¬μ¦ - λ€νμ λνκΈ° (0) 2023.09.15 - 2 ≤