- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
import java.util.Arrays;
import java.util.Optional;
public class AntiVirus{
private int scanIntensity = 0;
//this method is ready for you.
public void setScanIntensity(int level){
scanIntensity = level;
}
//write this method.
public String scanFile(File file,VirusDB database){
String[] signature = database.getSignatures(scanIntensity);
String fileData = file.getData().toLowerCase();
Optional<String> res = Arrays.stream(signature)
.map(s -> s.toLowerCase())
.filter(fileData::contains).findAny();
String scan = " is safe";
if(res.isPresent()) {
System.out.println(res.get());
System.out.println("scan: " + scan);
scan = " is not safe";
System.out.println("scan after: " + scan);
}
return file.getName() + scan;
}
}
Не понимаю, почему не работает.
Задача
https://www.codewars.com/kata/5b13027eedd62c5216000001
Test Results:
AVTest
checkRandomFiles
Log
dos
scan: is safe
scan after: is not safe
dos
scan: is safe
scan after: is not safe
dos
scan: is safe
scan after: is not safe
dos
scan: is safe
scan after: is not safe
dos
scan: is safe
scan after: is not safe
dos
scan: is safe
scan after: is not safe
dos
scan: is safe
scan after: is not safe
dos
scan: is safe
scan after: is not safe
dos
scan: is safe
scan after: is not safe
expected:<f4wpzFoQD is [not ]safe> but was:<f4wpzFoQD is []safe>
Stack Trace
Completed in 476ms
checkSameFilesWithDifferentIntensitySett ings
Log
virus
scan: is safe
scan after: is not safe
expected:<file1 is [not ]safe> but was:<file1 is []safe>
Stack Trace
Completed in 1ms
Completed in 496ms
guest6 14.09.2021 18:15 # +2
> Jawa
imrnccc 14.09.2021 18:52 # 0
guest6 14.09.2021 20:23 # +4
bormand 14.09.2021 20:35 # +1
guest6 14.09.2021 20:37 # +2
JloJle4Ka 16.09.2021 08:48 # +1
CEHT9I6PbCKuu_nemyx 16.09.2021 10:45 # +1
JloJle4Ka 16.09.2021 10:52 # 0
CEHT9I6PbCKuu_nemyx 16.09.2021 10:53 # +1
guest6 16.09.2021 11:58 # +2
JloJle4Ka 30.09.2021 18:48 # +2
По работе мне очень часто приходится трапезничать вместе представителями Китайской/Малайзийской/Корейской/Индийской/Jawa наций - в национальных кухнях. По традиции еда очень острая с большой концентрацией перца, васаби итд. Острая еда мне самому очень нравится. НО...
Вопрос: Как предотвратить агонию возникающую в туалете? Существуют ли какие-нибудь препараты или способы чтоб можно было избежать всего этого...?
Пожалуйста, медики, диетологи и специалисты сферы, посоветуйте. =) Заранее благодарен.
(Вопрос не для приколистов и философов НО можно прикальнутся и пофилосовствовать...)
bormand 30.09.2021 18:49 # +1
Soul_re@ver 30.09.2021 18:58 # +3
JloJle4Ka 30.09.2021 18:59 # 0
Desktop 30.09.2021 19:12 # +1
CEHT9I6PbCKuu_nemyx 30.09.2021 20:39 # +1
https://govnokod.ru/27636#comment673478
Desktop 30.09.2021 19:05 # +3
а молоко в клизму топлёное подойдёт?
Soul_re@ver 30.09.2021 19:09 # +1
Desktop 30.09.2021 19:10 # +1
Soul_re@ver 30.09.2021 19:12 # +1
Desktop 30.09.2021 19:13 # +1
Desktop 30.09.2021 19:11 # +1
CEHT9I6PbCKuu_nemyx 30.09.2021 20:45 # +1