Notice
														
												
											
												
												
													Recent Posts
													
											
												
												
													Recent Comments
													
											
												
												
													Link
													
											반응형
    
    
    
  | 일 | 월 | 화 | 수 | 목 | 금 | 토 | 
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 | 
| 9 | 10 | 11 | 12 | 13 | 14 | 15 | 
| 16 | 17 | 18 | 19 | 20 | 21 | 22 | 
| 23 | 24 | 25 | 26 | 27 | 28 | 29 | 
| 30 | 
													Tags
													
											
												
												- 가벼운학습지후기
 - 프로그래머스
 - 자바스크립트
 - 자바
 - 알고리즘
 - mybatis
 - array
 - 일본어학습지
 - java
 - 마이라이트
 - 삼성소프트웨어아카데미
 - 자료구조
 - 코테
 - javascript
 - 코딩
 - js
 - 코딩테스트
 - SWEA
 - 코테준비
 - 성인학습지
 - 스텍
 - 가벼운학습지
 - 정렬
 - 일본어공부
 - stack
 - 인프런
 - 일본어독학
 - 백준
 - 카카오
 - 삼성
 
													Archives
													
											
												
												- Today
 
- Total
 
목록Code (1)
개발에 AtoZ까지
			
			
				[JAVA][Array] TwoSum
				
	
	
               
           
					
					
					
					
					
					
						
					
				1. 문제 Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have exactly one solution, and you may not use the same element twice. Example: Given nums = [2, 7, 11, 15], target = 9, Because nums [0] + nums [1] = 2 + 7 = 9, return [0, 1]. 2. 문제해설 target의 숫자를 nums 배열에 있는 숫자 2개의 합으로 만들 수 있는데 어느 인덱스에 있는 숫자를 활용해야 ..
				코딩테스트 준비/기타문제
				
				2021. 1. 26. 13:12