Skip to content

Instantly share code, notes, and snippets.

View sarbull's full-sized avatar
🌀
Software Engineer who's older than Google.

Cezar Sîrbu sarbull

🌀
Software Engineer who's older than Google.
View GitHub Profile
@sarbull
sarbull / BoostIT.java
Last active December 8, 2017 21:57 — forked from boostit/gist:5a884a68e222ebbe8731296e33fcdf94
Can you spot the errors in the code? Tell us in the comments below.
class BoostIT implements Angajeaza {
public static String XP_LEVEL = "Senior";
public Set<Senior> seniors = new HashSet<Senior>;
public Set Cautam(List<Developer> devs) {
for (Developer d : devs) {
if (d.stieJava().equals(XP_LEVEL)) {
seniors.add(d);
}
}