-
-
Notifications
You must be signed in to change notification settings - Fork 160
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add squeaky-clean exercise #327
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,3 +18,5 @@ pom.xml.asc | |
*.lein-plugins/ | ||
*.lein-failures | ||
*.nrepl-port | ||
.clj-kondo | ||
.lsp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
In this exercise you will implement a partial set of utility routines to help a developer | ||
clean up identifier names. | ||
|
||
In the 4 tasks you will gradually build up the routine `clean`. A valid identifier comprises | ||
zero or more letters and underscores. | ||
|
||
In all cases the input string is guaranteed to be non-nil. If an empty string is passed to the `clean` function, an empty string should be returned. | ||
|
||
Note that the caller should avoid calling the routine `clean` with an empty identifier since such identifiers are ineffectual. | ||
|
||
### 1. Replace any spaces encountered with underscores | ||
|
||
Implement the `clean` function to replace any spaces with underscores. This also applies to leading and trailing spaces. | ||
|
||
```clojure | ||
(clean "my Id") | ||
;;=> "my___Id" | ||
``` | ||
|
||
### 2. Replace control characters with the upper case string "CTRL" | ||
|
||
Modify the `clean` function to replace control characters with the upper case string `"CTRL"`. | ||
|
||
```clojure | ||
(clean "my\0Id") | ||
;;=> "myCTRLId" | ||
``` | ||
|
||
### 3. Convert kebab-case to camelCase | ||
|
||
Modify the `clean` function to convert kebab-case to camelCase. | ||
|
||
```clojure | ||
(clean "à-ḃç") | ||
;;=> "àḂç" | ||
``` | ||
|
||
### 4. Omit Greek lower case letters | ||
|
||
Modify the `clean` function to omit any Greek letters in the range 'α' to 'ω'. | ||
|
||
```clojure | ||
(clean "MyΟβιεγτFinder") | ||
;;=> "MyΟFinder" | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{:aliases {:test {:extra-paths ["test"] | ||
:extra-deps {com.cognitect/test-runner {:git/url "https://github.com/cognitect-labs/test-runner.git" | ||
:sha "209b64504cb3bd3b99ecfec7937b358a879f55c1"}} | ||
:main-opts ["-m" "cognitect.test-runner"]}}} |
35 changes: 35 additions & 0 deletions
35
exercises/concept/squeaky-clean/src/exercism/squeaky_clean.clj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
(ns exercism.squeaky-clean | ||
(:require [clojure.string :as str])) | ||
|
||
(defn escape-ctrl-char | ||
"If c is a control character, outputs \"CTRL\", otherwise itself" | ||
[c] | ||
(if (Character/isISOControl c) | ||
"CTRL" c)) | ||
|
||
(defn escape-ctrl [s] | ||
(apply str (map escape-ctrl-char s))) | ||
|
||
(defn camelize [s] | ||
(let [words (str/split s #"-")] | ||
(if (str/includes? s "-") | ||
(str/join "" (cons (first words) | ||
(cons (str/upper-case (ffirst (rest words))) | ||
(rest (first (rest words)))))) | ||
s))) | ||
|
||
(defn letters [s] | ||
(apply str (filter #(or (Character/isLetter %) | ||
(= \_ %)) | ||
s))) | ||
|
||
(defn clean-greek [s] | ||
(apply str (filter #(not (<= 945 (int %) 969)) s))) | ||
|
||
(defn clean [s] | ||
(-> s | ||
(str/replace " " "_") | ||
camelize | ||
escape-ctrl | ||
letters | ||
clean-greek)) |
30 changes: 30 additions & 0 deletions
30
exercises/concept/squeaky-clean/test/exercism/squeaky_clean_test.clj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
(ns exercism.squeaky-clean-test | ||
(:require [clojure.test :refer [deftest testing is]] | ||
exercism.squeaky-clean)) | ||
|
||
(deftest clean-single-letter | ||
(is (= "A" (exercism.squeaky-clean/clean "A")))) | ||
|
||
(deftest clean-clean-string | ||
(is (= "àḃç" (exercism.squeaky-clean/clean "àḃç")))) | ||
|
||
(deftest clean-string-with-spaces | ||
(is (= "my___Id" (exercism.squeaky-clean/clean "my Id")))) | ||
|
||
(deftest clean-string-with-control-char | ||
(is (= "myCTRLId" (exercism.squeaky-clean/clean "my\u0000Id")))) | ||
|
||
(deftest clean-string-with-no-letters | ||
(is (= "" (exercism.squeaky-clean/clean "😀😀😀")))) | ||
|
||
(deftest clean-empty-string | ||
(is (= "" (exercism.squeaky-clean/clean "")))) | ||
|
||
(deftest convert-kebab-to-camel-case | ||
(is (= "àḂç" (exercism.squeaky-clean/clean "à-ḃç")))) | ||
|
||
(deftest omit-lower-case-greek-letters | ||
(is (= "MyΟFinder" (exercism.squeaky-clean/clean "MyΟβιεγτFinder")))) | ||
|
||
(deftest combine-conversions | ||
(is (= "_AbcĐCTRL" (exercism.squeaky-clean/clean "9 -abcĐ😀ω\0")))) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks like the exemplar file, in which case it should be located in the
.meta
directory.