Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ jobs:
echo "## 줄바꿈 누락 파일" >> $GITHUB_STEP_SUMMARY
for file in $files; do
echo "검사 중: $file"
# 바이너리 파일은 줄바꿈 검사 대상에서 제외
if [ -s "$file" ] && ! grep -qI . "$file"; then
echo "⏭️ 건너뜀 (바이너리): $file"
continue
fi
if [ -s "$file" ] && [ "$(tail -c 1 $file | wc -l)" -eq 0 ]; then
echo "❌ 줄바꿈 누락: $file"
echo "- $file" >> $GITHUB_STEP_SUMMARY
Expand Down
28 changes: 15 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,35 @@
# 리트코드 스터디

[![Automation 🤖](https://github.com/DaleStudy/leetcode-study/actions/workflows/automation.yaml/badge.svg)](https://github.com/DaleStudy/leetcode-study/actions/workflows/automation.yaml)
[![Integration 🔄](https://github.com/DaleStudy/leetcode-study/actions/workflows/integration.yaml/badge.svg)](https://github.com/DaleStudy/leetcode-study/actions/workflows/integration.yaml)

🛫 해외취업을 위한 오픈소스 기반 알고리즘 스터디

- [웹사이트](https://www.dalestudy.com/)
- [리더보드](https://leaderboard.dalestudy.com/)
- [위키](https://github.com/DaleStudy/leetcode-study/wiki)
- [게시판](https://github.com/DaleStudy/leetcode-study/discussions)
- [채팅방](https://discord.com/channels/775115965964222492/1229860988170403901)
- 웹사이트: https://www.dalestudy.com/
- 리더보드: https://leaderboard.dalestudy.com/
- 위키: https://github.com/DaleStudy/leetcode-study/wiki
- 게시판: https://github.com/DaleStudy/leetcode-study/discussions
- 채팅방: https://discord.com/channels/775115965964222492/1229860988170403901

## 차수

- 7기 (Mar 1, 2025 - June 13, 2026): [프로젝트](https://github.com/orgs/DaleStudy/projects/26/views/3), [팀](https://github.com/orgs/DaleStudy/teams/leetcode07)
- 7기 (Mar 1, 2025 - Jun 13, 2026): [프로젝트](https://github.com/orgs/DaleStudy/projects/26/views/3), [팀](https://github.com/orgs/DaleStudy/teams/leetcode07)
- 6기 (Nov 8, 2025 - Feb 20, 2026): [프로젝트](https://github.com/orgs/DaleStudy/projects/23/views/3), [팀](https://github.com/orgs/DaleStudy/teams/leetcode06)
- 5기 (Jul 20, 2025 - Nov 1, 2025): [프로젝트](https://github.com/orgs/DaleStudy/projects/16/views/3), [팀](https://github.com/orgs/DaleStudy/teams/leetcode05)
- 4기 (Mar 30, 2025 - Jul 12, 2025): [프로젝트](https://github.com/orgs/DaleStudy/projects/13/views/3), [팀](https://github.com/orgs/DaleStudy/teams/leetcode04)
- 3기 (Dec 08, 2024 - Mar 22, 2025): [프로젝트](https://github.com/orgs/DaleStudy/projects/12/views/3), [팀](https://github.com/orgs/DaleStudy/teams/leetcode03)
- 2기 (Aug 11, 2024 - Nov 23, 2024): [프로젝트](https://github.com/orgs/DaleStudy/projects/3/views/3), [팀](https://github.com/orgs/DaleStudy/teams/leetcode02)
- 1기 (Apr 21, 2024 - Aug 10, 2024): [프로젝트](https://github.com/orgs/DaleStudy/projects/1/views/1), [팀](https://github.com/orgs/DaleStudy/teams/leetcode01)

## 후원
## 후기

![Testimony](./testimony.png)

## 응원

리트코드 스터디가 여러분 코딩 테스트 준비에 도움이 되셨다면 후원을 고려해주시면 감사하겠습니다. 💝
후원이 어려우시다면 저장소에 스타를 주시는 것도 더 많은 분들이 저희 커뮤니티를 찾는데 도움이 됩니다. ⭐
달레 스터디로 부터 받은 도움을 후원을 통해서 더 많은 분들에게 나눠주세요. 💝
후원은 달레 스터디가 커뮤니티로서 지속 가능할 수 있는 중요한 기반이 됩니다. 🙏
저장소에 스타를 주시는 것도 더 많은 분들이 저희 커뮤니티를 찾는데 도움이 됩니다. ⭐

<p align="center">
<a href="https://github.com/sponsors/DaleStudy">
<img src="./sponsors.svg" alt="Sponsors" />
<img src="https://raw.githubusercontent.com/DaleStudy/.github/main/sponsorkit/sponsors.svg" alt="Sponsors" />
</a>
</p>
Loading