일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 영어명언
- tokenizing
- 완전탐색
- Convolution Neural Network
- object detection
- text2img
- 영어
- #영어
- #Android
- 딥러닝
- word embedding
- #실생활 영어
- python __init__
- opencv SURF
- #프로젝트
- #영어 명언
- convexhull
- #English
- #실생활영어
- #일상영어
- tensorflow update
- findContours
- c언어
- python list
- python 알고리즘
- TensorFlow
- #opencv
- #1일1영어
- 이미지 생성
- keras
Archives
- Today
- Total
목록아나그램 python (1)
When will you grow up?
Group Anagrams [leet code 49]
https://leetcode.com/problems/group-anagrams/ 애너그램 문제이며,애너그램이란 문자열이 주어졌을 때, 알파벳의 나열 순서를 다르지만 그 구성이 일치하면 두 단어는 아나그램이라고 합니다.ex) a = "atta" b = "taat" 일때 나열 순서는 다르지만 a 2개 t 2개로 a 와 b는 Anagram이라고 표현한다. Example 1:Input: strs = ["eat","tea","tan","ate","nat","bat"]Output: [["bat"],["nat","tan"],["ate","eat","tea"]]Example 2:Input: strs = [""]Output: [[""]]Example 3:Input: strs = ["a"]Output: [["a..
02. Study/Algorithm
2024. 8. 12. 23:36