Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1차 수정 버전 - 김성훈 #11

Open
wants to merge 7 commits into
base: master
Choose a base branch
from

Conversation

Seonghun23
Copy link

No description provided.

// 그 결과 결과값을 바로 캐스팅하여 가져올 수 있게 되었다.
// 이전 코드 보단 한층 깔끔한 느낌이다.
// 다만 flatMap으로 튜플로 변경하는 부분의 코드가 가독성이 좋지 않고 지저분하다.
// 저것도 더 깔끔하게 변경할 수 있을지 고민해 봐야 겠다.
Copy link
Owner

Choose a reason for hiding this comment

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

1 따봉 드립니다.

let names: [String] = []

let champsDict = champs?
.flatMap { [$0["key"] as? String: $0["name"] as? String] }
Copy link
Owner

Choose a reason for hiding this comment

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

이곳의 결과물은 Dictionary일까요 Array일까요?
champs -> flatMap -> reduce 로 바뀌는 과정의 타입 변화를 살펴보면 힌트가 있을 것 같습니다.

Copy link
Author

Choose a reason for hiding this comment

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

flatMap 결과값은 Tuple을 담고 있는 Array입니다.

다만 타입추론으로 reduce를 거치며 이Tuple의 key에 자료형이 champsDict의 키에 자료형과 맞춰지게 되어 결과적으로 champsDict의 자료형은 Optional String을 키값으로 가지는 Dictionary가 되었습니다.

보통은 Codable을 이용하지만, Codable을 사용하지 않고 고계 함수만으로 개선하려 하니 더 고민이었던 것 같습니다.

@Seonghun23
Copy link
Author

@wanbok 리뷰 감사합니다.
1따봉, 1조언 모두 제게 큰 도움이 되었습니다!
말씀해 주신 부분도 참고하여 더 개선해 볼 수 있도록 고민해 보겠습니다.

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