일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 토이프로젝트
- 취미
- 서울제빵소
- 발더스모드
- 바질토마토뭐시기
- 알고리즘테스트
- 송리단
- 맛집
- 누룽지소금빵
- LeetCode
- 발더스3
- 메일우유
- 발더스게이트
- 메탈퍼즐
- DIY
- 눈알빠지겠네
- 미앤아이
- 하스스톤
- 3d퍼즐
- 게임
- 천등
- 코테
- 잠실새내
- 버즈2프로
- 노노그램
- 밥먹고
- 뜨아거
- javascript
- 나쫌
- 코딩테스트
- Today
- Total
목록2023/10/04 (2)
.Zzumbong
난이도 [ 😊 ] Easy 문제 설명 Design a HashMap without using any built-in hash table libraries. Implement the MyHashMap class: MyHashMap() initializes the object with an empty map. void put(int key, int value) inserts a (key, value) pair into the HashMap. If the key already exists in the map, update the corresponding value. int get(int key) returns the value to which the specified key is mapped, or -1 if..
난이도 [ 🤔 ] Medium 문제 설명 The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font for better legibility) P A H N A P L S I I G Y I R And then read line by line: "PAHNAPLSIIGYIR" Write the code that will take a string and make this conversion given a number of rows: string convert(string s, int numRows); 입출..