this level is not working in polish language.
Problem with:
-All task in lvl 9;
pl/codegym/task/task09/task0901/Solution.java:1: error: illegal character: '\ufeff'
package com.codegym.task.task09.task0901;
^
-------------------------------------------------------------
if you have the same problem, this is solution:
Remove first char "." before "package com.codegym.task.task09.task0901;.
and change name "com" in title package for "pl".
Example:
before:
package com.codegym.task.task09.task0901;.
affter :
package pl.codegym.task.task09.task0901;.
Thanks for this solution:
John Squirrels
GO TO FULL VERSION