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 | 31 |
Tags
- 백준
- 백준16937
- 백준20126
- 백준13417
- BaseCallbackHandler
- 백준 타일코드
- LangChain
- 두 개의 배열
- 백준 도서관
- streaming chat
- Frog River One
- liquibse
- streamlit
- java
- Codility
- 백준3078 풀이
- 백준17124
- 백준2098
- 백준1720
- 백준11332
- ChatOpenAI
- 두 스티커
- 백준1461
- export changeLog
- 백준1802
- generateChangeLog
- 백준3078
- 교수님의 기말고사풀이
- 백준 시간초과
- 외판원순회
Archives
- Today
- Total
목록PermMissingElem (1)
tempcru 삽질기록
Codility - Perm Missing Elem 풀이 (java)
문제 https://app.codility.com/programmers/lessons/3-time_complexity/perm_missing_elem/ PermMissingElem coding task - Learn to Code - Codility Find the missing element in a given permutation. app.codility.com 배열에서 없는 숫자하나 찾아라~~ 접근방법 주어진 배열안에 들어갈 숫자가 최대 10만 1 이므로 value를 index로 하는 boolean 배열 하나 만들어서 exist 체크 풀이 public class PermMissingElem { public static void main(String[] args) { int[] A = {2, 3, 1..
Coding Test/Codility
2022. 1. 5. 14:33