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
- 최단거리
- c언어 기본
- 인텔리제이
- git 오류
- 스택
- 참고X
- 운체 1주차
- c언어
- python기초
- 1주차(1)
- c언어 제어문
- #코린이 #코딩 #할 수 있다
- git기초
- 자료구조
- 인스타
- 데베시 1주차
- 파이썬 알고리즘 인터뷰
- python기본
- git오류
- 코테
- 백준
- DP
- 도커
- 그리디
- 5장
- 코딩테스트
- 4장
- Git
- Workbench
- python자료형
Archives
- Today
- Total
목록분류 전체보기 (103)
하루살이 개발자
[GitHub 오류] git push origin main 에러
// 현재 연결된 브랜치 확인 git branch -a // 브랜치 main 생성 git branch -M main // main에 레포 연결 git remote add main "레포주소" git add . git commit -m "" // main에 pusuh git push origin main
기타/GitHub
2022. 1. 27. 18:01
[알고리즘_그래프] DFS(깊이 우선 탐색) 예제
섬의 개수 문제: https://leetcode.com/problems/number-of-islands/ Number of Islands - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com Solution class Solution: def numIslands(self, grid: List[List[str]]) -> int: def dfs(i, j): # 땅이 아닌 경우 종료 if i = len(grid) or \ j = len..
CS/알고리즘
2022. 1. 23. 02:43