hackerrank exercises link

This commit is contained in:
anebz 2019-03-28 18:39:30 +01:00
parent 573db0cb29
commit e306c3ac9e
2 changed files with 6 additions and 2 deletions

View File

@ -2,7 +2,7 @@
## Implement an algorithm to determine if a S has all unique characters. What if you can't use additional data structures ## Implement an algorithm to determine if a S has all unique characters. What if you can't use additional data structures
example: s = "abdceb" > example: s = "abdceb"
## 1.1.1. First idea ## 1.1.1. First idea

View File

@ -48,4 +48,8 @@ String joinWords(String[] words) {
} }
return sentence.toString(); return sentence.toString();
} }
``` ```
## Hackerrank exercises
[Hackerrank string exercises](https://www.hackerrank.com/domains/algorithms?filters%5Bsubdomains%5D%5B%5D=strings)