Skip to content

Commit

Permalink
chore: sync-up catalog (#479)
Browse files Browse the repository at this point in the history
  • Loading branch information
ParanoidUser committed Dec 8, 2023
1 parent 67953b6 commit 60170e0
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Codewars Handbook ☕️🚀

[![Views statistics +1 👀](https://img.shields.io/badge/dynamic/xml?color=success&label=views&query=//*[name()=%27text%27][3]&url=https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2FParanoidUser%2Fcodewars-handbook)](https://hits.seeyoufarm.com/api/count/graph/dailyhits.svg?url=https://github.com/ParanoidUser/codewars-handbook)
[![Completed kata 👌](https://img.shields.io/badge/completed%20kata-68.6%25-red.svg)](https://www.codewars.com/kata/search/java?xids=completed)
[![Completed kata 👌](https://img.shields.io/badge/completed%20kata-68.5%25-red.svg)](https://www.codewars.com/kata/search/java?xids=completed)
[![CI pipeline 🛠](https://img.shields.io/github/actions/workflow/status/ParanoidUser/codewars-handbook/build.yml?branch=main)](https://github.com/ParanoidUser/codewars-handbook/actions/workflows/build.yml)
[![Quality gate 🔎](https://img.shields.io/sonar/alert_status/codewars-handbook?server=https%3A%2F%2Fsonarcloud.io)](https://sonarcloud.io/dashboard?id=codewars-handbook)
[![Let's have a chat! 📞](https://img.shields.io/gitter/room/ParanoidUser/codewars-handbook?color=49c39e)](https://gitter.im/ParanoidUser/codewars-handbook)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# [extract file name](https://www.codewars.com/kata/extract-file-name "https://www.codewars.com/kata/597770e98b4b340e5b000071")
# [extract portion of file name](https://www.codewars.com/kata/extract-portion-of-file-name "https://www.codewars.com/kata/597770e98b4b340e5b000071")

You have to extract a portion of the file name as follows:
- Assume it will start with date represented as long number
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ interface FileNameExtractor {
static String extractFileName(String dirtyFileName) {
return dirtyFileName.substring(dirtyFileName.indexOf('_') + 1, dirtyFileName.lastIndexOf('.'));
}
}
}
2 changes: 1 addition & 1 deletion kata/6-kyu/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
- [Everybody hates Mondays](everybody-hates-mondays)
- [Evil Autocorrect Prank](evil-autocorrect-prank)
- [Experimenting with a sequence of complex numbers](experimenting-with-a-sequence-of-complex-numbers)
- [Extract file name](extract-file-name)
- [Extract portion of file name](extract-portion-of-file-name)
# F
- [Factors of triangle numbers](factors-of-triangle-numbers)
- [Fat Fingers](fat-fingers)
Expand Down
2 changes: 1 addition & 1 deletion kata/7-kyu/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@
- [Prison Break](prison-break-1)
- [Product Array (Array Series #5)](product-array-array-series-number-5)
- [Product Of Maximums Of Array (Array Series #2)](product-of-maximums-of-array-array-series-number-2)
- [Product of the main diagonal of a square matrix.](product-of-the-main-diagonal-of-a-square-matrix)
- [Product of the main diagonal of a square matrix](product-of-the-main-diagonal-of-a-square-matrix)
# Q
- [Quicksum](quicksum)
# R
Expand Down

0 comments on commit 60170e0

Please sign in to comment.