Skip to content

Conversation

@ElenaFedorovskaia
Copy link

Homework. Part 2.
ElenaFedorovskaia.

// ageOfPersonWithTheLongestFullName: (Person -> String) -> (Person, Person) -> int
//
private BiFunction<Person, Person, Integer> ageOfPersonWithTheLongestFullName(Function<Person,String> function){
return (p1,p2) -> function.apply(p1).compareTo(function.apply(p2)) > 0
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not function.apply(p1) > function.apply(p2)?

Copy link
Author

@ElenaFedorovskaia ElenaFedorovskaia Jul 7, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Because i compare two strings. Or did you mean function.apply(p1).length > function.apply(p2).length?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeap

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants